1 write to AllTokenTypes
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\SemanticTokens\SemanticTokensSchema.cs (1)
116AllTokenTypes = [.. SemanticTokenTypes.AllTypes, .. customTokenTypes];
5 references to AllTokenTypes
Microsoft.CodeAnalysis.EditorFeatures (1)
LanguageServer\AlwaysActivateInProcLanguageClient.cs (1)
113TokenTypes = [.. SemanticTokensSchema.GetSchema(clientCapabilities.HasVisualStudioLspCapability()).AllTokenTypes],
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (1)
RazorSemanticTokensAccessor.cs (1)
12public static ImmutableArray<string> GetTokenTypes(bool clientSupportsVisualStudioExtensions) => SemanticTokensSchema.GetSchema(clientSupportsVisualStudioExtensions).AllTokenTypes;
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
DefaultCapabilitiesProvider.cs (1)
116TokenTypes = [.. SemanticTokensSchema.GetSchema(clientCapabilities.HasVisualStudioLspCapability()).AllTokenTypes],
Handler\SemanticTokens\SemanticTokensSchema.cs (1)
96/// Mapping from the semantic token type name to the index in <see cref="AllTokenTypes"/>. Required since we report
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (1)
SemanticTokens\SemanticTokensRangeTests.cs (1)
604Assert.True(schema.AllTokenTypes.Contains(tokenName));