1 implementation of IHighlighter
Microsoft.CodeAnalysis.Features (1)
Highlighting\Keywords\AbstractKeywordHighlighter.cs (1)
24internal abstract class AbstractKeywordHighlighter : IHighlighter
4 references to IHighlighter
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
KeywordHighlighting\AbstractKeywordHighlighterTests.cs (1)
23private 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)
21private readonly List<Lazy<IHighlighter, LanguageMetadata>> _highlighters; 27[ImportMany] IEnumerable<Lazy<IHighlighter, LanguageMetadata>> highlighters)