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