1 implementation of IHighlighter
Microsoft.CodeAnalysis.Features (1)
Highlighting\Keywords\AbstractKeywordHighlighter.cs (1)
27internal abstract class AbstractKeywordHighlighter(bool findInsideTrivia = true) : IHighlighter
4 references to IHighlighter
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
KeywordHighlighting\AbstractKeywordHighlighterTests.cs (1)
22private static readonly TestComposition s_baseComposition = EditorTestCompositions.EditorFeatures.AddExcludedPartTypes(typeof(IHighlighter));
Microsoft.CodeAnalysis.Features (3)
Highlighting\ExportHighlighterAttribute.cs (1)
14internal sealed class ExportHighlighterAttribute(string language) : ExportAttribute(typeof(IHighlighter))
Highlighting\HighlightingService.cs (2)
20[ImportMany] IEnumerable<Lazy<IHighlighter, LanguageMetadata>> highlighters) : IHighlightingService 22private readonly List<Lazy<IHighlighter, LanguageMetadata>> _highlighters = [.. highlighters];