Skip to content
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

Allow parameter renames in Edit and Continue #54856

Merged
merged 15 commits into from
Aug 10, 2021

Conversation

davidwengier
Copy link
Contributor

@davidwengier davidwengier commented Jul 16, 2021

Fixes #52563
Fixes #48635

@davidwengier
Copy link
Contributor Author

@tmat PTAL

Now that the other PR is in, this is pretty straight forward

Copy link
Member

@tmat tmat left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🕐

Copy link
Member

@cston cston left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Compiler changes LGTM.

@davidwengier
Copy link
Contributor Author

Worked out my symbol issues, the tests were bad and I feel bad. Updated with all feedback addressed now.

@RikkiGibson RikkiGibson self-assigned this Aug 4, 2021
@@ -1404,6 +1495,10 @@ class C
EncValidation.VerifyModuleMvid(2, reader1, reader2);

CheckNames(readers, reader2.GetTypeDefNames());
CheckNames(readers, reader2.GetMethodDefNames(), "F");
CheckNames(readers, reader2.GetParameterDefNames(), "", "arg");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

""

Curious, where does this empty name come from?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The method return

Copy link
Member

@tmat tmat left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

@davidwengier
Copy link
Contributor Author

Ping @dotnet/roslyn-compiler for a second review

@jaredpar
Copy link
Member

jaredpar commented Aug 9, 2021

@RikkiGibson PTAL

@@ -5260,7 +5286,7 @@ private static bool TryMapParameter((SyntaxNode? Node, int Ordinal) parameterKey
var newLambdaSymbol = GetLambdaExpressionSymbol(newModel, newLambda, cancellationToken);

// signature validation:
if (!ParametersEquivalent(oldLambdaSymbol.Parameters, newLambdaSymbol.Parameters, exact: false))
if (!ParameterTypesEquivalent(oldLambdaSymbol.Parameters, newLambdaSymbol.Parameters, exact: false))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was confused by this method name. Don't we also consider a change to the parameter's ref kind a rude edit? Do we have existing tests for such scenarios?

Copy link
Member

@tmat tmat Aug 10, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

RefKind is part of parameter type.

@davidwengier davidwengier merged commit 9683739 into dotnet:main Aug 10, 2021
@davidwengier davidwengier deleted the EnCRenameParameters branch August 10, 2021 21:20
@ghost ghost added this to the Next milestone Aug 10, 2021
@dibarbet dibarbet modified the milestones: Next, 17.0.P4 Aug 31, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

EnC - Allow parameter renames EnC: Updating lambda parameters to discards breaks EnC
7 participants