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