1 implementation of IHighlighter
Microsoft.CodeAnalysis.Features (1)
Highlighting\Keywords\AbstractKeywordHighlighter.cs (1)
24
internal abstract class AbstractKeywordHighlighter :
IHighlighter
4 references to IHighlighter
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
KeywordHighlighting\AbstractKeywordHighlighterTests.cs (1)
23
private static readonly TestComposition s_baseComposition = EditorTestCompositions.EditorFeatures.AddExcludedPartTypes(typeof(
IHighlighter
));
Microsoft.CodeAnalysis.Features (3)
Highlighting\ExportHighlighterAttribute.cs (1)
21
: base(typeof(
IHighlighter
))
Highlighting\HighlightingService.cs (2)
21
private readonly List<Lazy<
IHighlighter
, LanguageMetadata>> _highlighters;
27
[ImportMany] IEnumerable<Lazy<
IHighlighter
, LanguageMetadata>> highlighters)