10 references to VSInternalSpellCheckableRangeKind
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (1)
Cohost\Handlers\DocumentSpellCheck.cs (1)
33var kind = ProtocolConversions.SpellCheckSpanKindToSpellCheckableRangeKind(span.Kind);
Microsoft.CodeAnalysis.LanguageServer.Protocol (9)
Extensions\ProtocolConversions.cs (4)
576public static LSP.VSInternalSpellCheckableRangeKind SpellCheckSpanKindToSpellCheckableRangeKind(SpellCheckKind kind) 579SpellCheckKind.Identifier => LSP.VSInternalSpellCheckableRangeKind.Identifier, 580SpellCheckKind.Comment => LSP.VSInternalSpellCheckableRangeKind.Comment, 581SpellCheckKind.String => LSP.VSInternalSpellCheckableRangeKind.String,
Handler\SpellCheck\AbstractSpellCheckingHandler.cs (1)
188var kind = ProtocolConversions.SpellCheckSpanKindToSpellCheckableRangeKind(span.Kind);
Protocol\Internal\VSInternalSpellCheckableRangeReport.cs (4)
33/// 1. A kind, corresponding to the numeric value of <see cref="VSInternalSpellCheckableRangeKind"/>. 43/// 1, // The kind of the span. Equivalent to <see cref="VSInternalSpellCheckableRangeKind.Comment"/>. 47/// 0, // Equivalent to <see cref="VSInternalSpellCheckableRangeKind.String"/>. 51/// 0, // Equivalent to <see cref="VSInternalSpellCheckableRangeKind.String"/>.