6 references to GetFlowAnalysisAnnotations
Microsoft.CodeAnalysis.CSharp (6)
FlowAnalysis\NullableWalker.cs (5)
9991
var annotations = IsAnalyzingAttribute ? FlowAnalysisAnnotations.None : property.
GetFlowAnalysisAnnotations
();
10035
BoundPropertyAccess property => property.PropertySymbol.
GetFlowAnalysisAnnotations
(),
10036
BoundIndexerAccess indexer => indexer.Indexer.
GetFlowAnalysisAnnotations
(),
10049
property.
GetFlowAnalysisAnnotations
() :
10062
var annotations = memberSymbol switch { PropertySymbol prop => prop.
GetFlowAnalysisAnnotations
(), FieldSymbol field => GetFieldAnnotations(field), _ => FlowAnalysisAnnotations.None };
Symbols\SymbolExtensions.cs (1)
480
PropertySymbol property => property.
GetFlowAnalysisAnnotations
(),