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