-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement support for emitting PrivateImplementationDetails to EnC deltas #69485
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dotnet-issue-labeler
bot
added
Area-Compilers
untriaged
Issues and PRs which have not yet been triaged by a lead
labels
Aug 12, 2023
tmat
force-pushed
the
PrivateImplDetails
branch
from
August 12, 2023 19:27
61f8408
to
2dd3a65
Compare
@davidwengier PTAL |
davidwengier
approved these changes
Aug 14, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider getting a compiler review here, as I don't have any context as to implications, but the changes make sense in and of themselves.
@dotnet/roslyn-compiler @cston PTAL |
AlekseyTs
reviewed
Aug 14, 2023
src/Compilers/CSharp/Portable/Emitter/EditAndContinue/CSharpSymbolMatcher.cs
Show resolved
Hide resolved
@RikkiGibson, @jcouv PTAL |
cston
reviewed
Aug 17, 2023
src/Compilers/CSharp/Portable/Symbols/Synthesized/GeneratedNames.cs
Outdated
Show resolved
Hide resolved
cston
reviewed
Aug 17, 2023
src/Compilers/VisualBasic/Portable/Emit/EditAndContinue/VisualBasicSymbolMatcher.vb
Outdated
Show resolved
Hide resolved
cston
approved these changes
Aug 17, 2023
RikkiGibson
approved these changes
Aug 18, 2023
src/Compilers/Core/CodeAnalysisTest/EditAndContinue/EditAndContinueTest.GenerationVerifier.cs
Outdated
Show resolved
Hide resolved
src/Compilers/Core/CodeAnalysisTest/EditAndContinue/EditAndContinueTest.cs
Outdated
Show resolved
Hide resolved
src/Compilers/Core/CodeAnalysisTest/EditAndContinue/SemanticEditDescription.cs
Outdated
Show resolved
Hide resolved
src/Compilers/CSharp/Test/Emit/Emit/EditAndContinue/EditAndContinueTests.cs
Show resolved
Hide resolved
tmat
force-pushed
the
PrivateImplDetails
branch
from
August 21, 2023 15:53
2dd3a65
to
702cd78
Compare
3 tasks
This was referenced Aug 23, 2023
Closed
Closed
Closed
ghost
added this to the Next milestone
Aug 23, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Includes support for synthesized inline arrays, inline array helpers and string switch helpers.
We emit new PID type and its contents to each EnC delta. Since PID is not a first-class symbol, this approach is simpler than implementing logic that maps new PID members to the previously emitted ones. We can add the sharing if needed later.
For now, avoid using PID for features that generate FieldRva. In theory, it should work but we need to test it with all supported runtimes. See #69480.
Adds VB implementation of
EditAndContinueTest
so that we can use the same test helpers between C# and VB.Fixes #69398