9 references to SemanticFacts
Microsoft.CodeAnalysis.Workspaces (9)
FindSymbols\FindReferences\Finders\AbstractMethodOrPropertyOrEventSymbolReferenceFinder.cs (1)
18var semanticFacts = state.SemanticFacts;
FindSymbols\FindReferences\Finders\AbstractReferenceFinder.cs (6)
210state.Cache.GetAliasInfo(state.SemanticFacts, token, cancellationToken), 406var info = state.SemanticFacts.GetForEachSymbols(state.SemanticModel, node); 451var info = state.SemanticFacts.GetCollectionInitializerSymbolInfo(state.SemanticModel, expression, cancellationToken); 489var semanticFacts = state.SemanticFacts; 526var awaitExpressionMethod = state.SemanticFacts.GetGetAwaiterMethod(state.SemanticModel, node); 604var 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());