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