-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Null annotate ParameterSymbol and derived #58700
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
Conversation
@roslyn-compiler PTAL |
src/Compilers/CSharp/Portable/Symbols/Retargeting/RetargetingParameterSymbol.cs
Outdated
Show resolved
Hide resolved
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.
Done review pass (commit 2)
src/Compilers/CSharp/Portable/Symbols/Source/SourceParameterSymbolBase.cs
Outdated
Show resolved
Hide resolved
/// <summary> | ||
/// <inheritdoc/> | ||
/// </summary> |
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.
/// <summary> | |
/// <inheritdoc/> | |
/// </summary> | |
/// <inheritdoc/> |
I think this is all you need, though @sharwell can correct me if I'm wrong.
@dotnet/roslyn-compiler can I get one more review here? |
} | ||
|
||
var sourceModuleSymbol = this.ContainingModule as SourceModuleSymbol; | ||
return (object)sourceModuleSymbol == null ? null : sourceModuleSymbol.DeclaringCompilation; |
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.
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.
Ah good catch. I was undoing edits in this file (had temp converted it to ?.
). Apparently didn't undo far enough.
No description provided.