13 references to SpellCheckKind
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (4)
SpellCheck\AbstractSpellCheckSpanTests.cs (4)
46private static SpellCheckKind ConvertKind(string key) 50"Comment" => SpellCheckKind.Comment, 51"Identifier" => SpellCheckKind.Identifier, 52"String" => SpellCheckKind.String,
Microsoft.CodeAnalysis.Features (6)
SpellCheck\AbstractSpellCheckSpanService.cs (5)
85AddSpan(new SpellCheckSpan(token.Span, SpellCheckKind.String)); 90AddSpan(new SpellCheckSpan(token.Span, SpellCheckKind.String)); 127AddSpan(new SpellCheckSpan(token.Span, SpellCheckKind.Identifier)); 142AddSpan(new SpellCheckSpan(trivia.Span, SpellCheckKind.Comment)); 164AddSpan(new SpellCheckSpan(token.Span, SpellCheckKind.Comment));
SpellCheck\SpellCheckSpan.cs (1)
11SpellCheckKind Kind);
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Handler\SpellCheck\AbstractSpellCheckingHandler.cs (3)
213SpellCheckKind.Identifier => VSInternalSpellCheckableRangeKind.Identifier, 214SpellCheckKind.Comment => VSInternalSpellCheckableRangeKind.Comment, 215SpellCheckKind.String => VSInternalSpellCheckableRangeKind.String,