9 references to SemanticFacts
Microsoft.CodeAnalysis.Workspaces (9)
FindSymbols\FindReferences\Finders\AbstractMethodOrPropertyOrEventSymbolReferenceFinder.cs (1)
18var semanticFacts = state.SemanticFacts;
FindSymbols\FindReferences\Finders\AbstractReferenceFinder.cs (6)
209state.Cache.GetAliasInfo(state.SemanticFacts, token, cancellationToken), 405var info = state.SemanticFacts.GetForEachSymbols(state.SemanticModel, node); 450var info = state.SemanticFacts.GetCollectionInitializerSymbolInfo(state.SemanticModel, expression, cancellationToken); 488var semanticFacts = state.SemanticFacts; 525var awaitExpressionMethod = state.SemanticFacts.GetGetAwaiterMethod(state.SemanticModel, node); 603var semanticFacts = state.SemanticFacts;
FindSymbols\FindReferences\Finders\OrdinaryMethodReferenceFinder.cs (1)
164var disposeMethod = state.SemanticFacts.TryGetDisposeMethod(state.SemanticModel, node, cancellationToken);
FindSymbols\FindReferences\Finders\PreprocessingSymbolReferenceFinder.cs (1)
52var targetSymbol = state.SemanticFacts.GetPreprocessingSymbol(state.SemanticModel, token.GetRequiredParent());