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