2 instantiations of TokenSemanticInfo
Microsoft.CodeAnalysis.Workspaces (2)
Shared\Extensions\SemanticModelExtensions.cs (1)
155return new TokenSemanticInfo(declaredSymbol, aliasSymbol, allSymbols, type, convertedType, token.Span);
Shared\Extensions\TokenSemanticInfo.cs (1)
16public static readonly TokenSemanticInfo Empty = new(
11 references to TokenSemanticInfo
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
Peek\PeekableItemSource.cs (1)
98var semanticInfo = await SymbolFinder.GetSemanticInfoAtPositionAsync(
Microsoft.CodeAnalysis.Features (2)
GoToDefinition\AbstractGoToDefinitionSymbolService.cs (2)
29var semanticInfo = await SymbolFinder.GetSemanticInfoAtPositionAsync(semanticModel, position, services, cancellationToken).ConfigureAwait(false); 72private static ISymbol? GetSymbol(TokenSemanticInfo semanticInfo, bool includeType)
Microsoft.CodeAnalysis.Workspaces (7)
FindSymbols\SymbolFinder.cs (3)
71var semanticInfo = await GetSemanticInfoAtPositionAsync( 76internal static async Task<TokenSemanticInfo> GetSemanticInfoAtPositionAsync( 90return TokenSemanticInfo.Empty;
Rename\RenameUtilities.cs (1)
48var semanticInfo = semanticModel.GetSemanticInfo(bindableToken, services, cancellationToken);
Shared\Extensions\SemanticModelExtensions.cs (2)
71public static TokenSemanticInfo GetSemanticInfo( 82return TokenSemanticInfo.Empty;
Shared\Extensions\TokenSemanticInfo.cs (1)
16public static readonly TokenSemanticInfo Empty = new(
Microsoft.VisualStudio.LanguageServices (1)
Snippets\AbstractSnippetExpansionClient.cs (1)
767var semanticInfo = semanticModel.GetSemanticInfo(token, document.Project.Solution.Services, cancellationToken);