14 references to SpellCheckKind
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (4)
SpellCheck\AbstractSpellCheckSpanTests.cs (4)
43private static SpellCheckKind ConvertKind(string key) 47"Comment" => SpellCheckKind.Comment, 48"Identifier" => SpellCheckKind.Identifier, 49"String" => SpellCheckKind.String,
Microsoft.CodeAnalysis.Features (6)
SpellCheck\AbstractSpellCheckSpanService.cs (5)
138AddSpan(new SpellCheckSpan(token.Span, SpellCheckKind.String)); 189AddSpan(new SpellCheckSpan(TextSpan.FromBounds(spanStart, spanEnd), SpellCheckKind.String)); 236AddSpan(new SpellCheckSpan(token.Span, SpellCheckKind.Identifier)); 251AddSpan(new SpellCheckSpan(trivia.Span, SpellCheckKind.Comment)); 271AddSpan(new SpellCheckSpan(token.Span, SpellCheckKind.Comment));
SpellCheck\SpellCheckSpan.cs (1)
11SpellCheckKind Kind);
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Extensions\ProtocolConversions.cs (4)
578public static LSP.VSInternalSpellCheckableRangeKind SpellCheckSpanKindToSpellCheckableRangeKind(SpellCheckKind kind) 581SpellCheckKind.Identifier => LSP.VSInternalSpellCheckableRangeKind.Identifier, 582SpellCheckKind.Comment => LSP.VSInternalSpellCheckableRangeKind.Comment, 583SpellCheckKind.String => LSP.VSInternalSpellCheckableRangeKind.String,