-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Extensions: use specific tracking issues for different areas (second pass) #78971
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
Changes from all commits
6cf9c73
569f8df
27ca6a5
8e64fe8
6a9232a
2741747
b284f13
4867742
8743a9c
340ced9
fe36e84
e1e361f
971d28e
6330045
700d605
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -93,7 +93,7 @@ internal MethodInfo ReplaceWithExtensionImplementation(out bool wasError) | |
|
|
||
| wasError = (Method is not null && method is null) || (SetMethod is not null && setMethod is null); | ||
|
|
||
| // Tracked by https://github.com/dotnet/roslyn/issues/76130 : Test with indexers (ie. "method") and in compound assignment (ie. "setMethod") | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, the follow-up note was moved to #78829
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The issue looks indexer specific, but the mentioned scenario is not.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For the operator scenario, I left a comment to you to check that you're tracking it as part of operators: #78971 (comment)
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I do not think this comment is about an operator scenario, but about a property scenario. |
||
| // Tracked by https://github.com/dotnet/roslyn/issues/76130 : Test in compound assignment (ie. "setMethod") | ||
| return new MethodInfo(symbol, method, setMethod); | ||
|
|
||
| static MethodSymbol? replace(MethodSymbol? method) | ||
|
|
||
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.
📝 I added a note to indexers follow-up issue. @AlekseyTs, I assume you're already covering this in your current ref analysis work for operators