14 references to SpellCheckKind
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (4)
SpellCheck\AbstractSpellCheckSpanTests.cs (4)
43
private 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)
138
AddSpan(new SpellCheckSpan(token.Span,
SpellCheckKind
.String));
189
AddSpan(new SpellCheckSpan(TextSpan.FromBounds(spanStart, spanEnd),
SpellCheckKind
.String));
236
AddSpan(new SpellCheckSpan(token.Span,
SpellCheckKind
.Identifier));
251
AddSpan(new SpellCheckSpan(trivia.Span,
SpellCheckKind
.Comment));
271
AddSpan(new SpellCheckSpan(token.Span,
SpellCheckKind
.Comment));
SpellCheck\SpellCheckSpan.cs (1)
11
SpellCheckKind
Kind);
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Extensions\ProtocolConversions.cs (4)
578
public static LSP.VSInternalSpellCheckableRangeKind SpellCheckSpanKindToSpellCheckableRangeKind(
SpellCheckKind
kind)
581
SpellCheckKind
.Identifier => LSP.VSInternalSpellCheckableRangeKind.Identifier,
582
SpellCheckKind
.Comment => LSP.VSInternalSpellCheckableRangeKind.Comment,
583
SpellCheckKind
.String => LSP.VSInternalSpellCheckableRangeKind.String,