4 instantiations of TokenInformation
Microsoft.CodeAnalysis.Features (3)
QuickInfo\CommonSemanticQuickInfoProvider.cs (3)
214return new TokenInformation(symbols, isAwait, nullableFlowState); 224return new TokenInformation(ImmutableArray.Create<ISymbol>(typeInfo.Type)); 228return new TokenInformation(ImmutableArray<ISymbol>.Empty);
Microsoft.CodeAnalysis.VisualBasic.Features (1)
QuickInfo\VisualBasicSemanticQuickInfoProvider.vb (1)
199Return Await CreateContentAsync(services, semanticModel, token, New TokenInformation(types), supportedPlatforms:=Nothing, options, cancellationToken).ConfigureAwait(False)
9 references to TokenInformation
Microsoft.CodeAnalysis.Features (9)
QuickInfo\CommonSemanticQuickInfoProvider.cs (9)
39var tokenInformation = BindToken(context.Services, context.SemanticModel, token, context.CancellationToken); 47private async Task<(TokenInformation tokenInformation, SupportedPlatformData? supportedPlatforms)> ComputeQuickInfoDataAsync( 60var tokenInformation = BindToken(services, semanticModel, token, cancellationToken); 64private async Task<(TokenInformation, SupportedPlatformData supportedPlatforms)> ComputeFromLinkedDocumentsAsync( 85var mainTokenInformation = BindToken(services, semanticModel, token, cancellationToken); 90var candidateResults = new List<(DocumentId docId, TokenInformation tokenInformation)> 105var linkedSymbols = BindToken(services, linkedModel, linkedToken, cancellationToken); 155TokenInformation tokenInformation, 184private TokenInformation BindToken(