2 instantiations of TokenSemanticInfo
Microsoft.CodeAnalysis.Workspaces (2)
Shared\Extensions\SemanticModelExtensions.cs (1)
158return new TokenSemanticInfo(declaredSymbol, preprocessingSymbol, aliasSymbol, allSymbols, type, convertedType, token.Span);
Shared\Extensions\TokenSemanticInfo.cs (1)
23public static readonly TokenSemanticInfo Empty = new(
10 references to TokenSemanticInfo
Microsoft.CodeAnalysis.EditorFeatures (1)
Peek\PeekableItemSource.cs (1)
94var semanticInfo = await SymbolFinder.GetSemanticInfoAtPositionAsync(
Microsoft.CodeAnalysis.Features (1)
GoToDefinition\AbstractGoToDefinitionSymbolService.cs (1)
28var semanticInfo = await SymbolFinder.GetSemanticInfoAtPositionAsync(semanticModel, position, services, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Workspaces (7)
FindSymbols\SymbolFinder.cs (3)
88var semanticInfo = await GetSemanticInfoAtPositionAsync( 93internal static async Task<TokenSemanticInfo> GetSemanticInfoAtPositionAsync( 107return TokenSemanticInfo.Empty;
Rename\RenameUtilities.cs (1)
48var semanticInfo = semanticModel.GetSemanticInfo(bindableToken, services, cancellationToken);
Shared\Extensions\SemanticModelExtensions.cs (2)
70public static TokenSemanticInfo GetSemanticInfo( 81return TokenSemanticInfo.Empty;
Shared\Extensions\TokenSemanticInfo.cs (1)
23public static readonly TokenSemanticInfo Empty = new(
Microsoft.VisualStudio.LanguageServices (1)
Snippets\SnippetExpansionClient.cs (1)
772var semanticInfo = semanticModel.GetSemanticInfo(token, document.Project.Solution.Services, cancellationToken);