6 references to GetFlowAnalysisAnnotations
Microsoft.CodeAnalysis.CSharp (6)
FlowAnalysis\NullableWalker.cs (5)
9106
var annotations = IsAnalyzingAttribute ? FlowAnalysisAnnotations.None : property.
GetFlowAnalysisAnnotations
();
9150
BoundPropertyAccess property => property.PropertySymbol.
GetFlowAnalysisAnnotations
(),
9151
BoundIndexerAccess indexer => indexer.Indexer.
GetFlowAnalysisAnnotations
(),
9164
property.
GetFlowAnalysisAnnotations
() :
9177
var annotations = memberSymbol switch { PropertySymbol prop => prop.
GetFlowAnalysisAnnotations
(), FieldSymbol field => GetFieldAnnotations(field), _ => FlowAnalysisAnnotations.None };
Symbols\SymbolExtensions.cs (1)
474
PropertySymbol property => property.
GetFlowAnalysisAnnotations
(),