13 references to SpellCheckKind
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (4)
SpellCheck\AbstractSpellCheckSpanTests.cs (4)
46
private 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)
85
AddSpan(new SpellCheckSpan(token.Span,
SpellCheckKind
.String));
90
AddSpan(new SpellCheckSpan(token.Span,
SpellCheckKind
.String));
127
AddSpan(new SpellCheckSpan(token.Span,
SpellCheckKind
.Identifier));
142
AddSpan(new SpellCheckSpan(trivia.Span,
SpellCheckKind
.Comment));
164
AddSpan(new SpellCheckSpan(token.Span,
SpellCheckKind
.Comment));
SpellCheck\SpellCheckSpan.cs (1)
11
SpellCheckKind
Kind);
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Handler\SpellCheck\AbstractSpellCheckingHandler.cs (3)
213
SpellCheckKind
.Identifier => VSInternalSpellCheckableRangeKind.Identifier,
214
SpellCheckKind
.Comment => VSInternalSpellCheckableRangeKind.Comment,
215
SpellCheckKind
.String => VSInternalSpellCheckableRangeKind.String,