2 implementations of IBraceMatchingService
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
BraceHighlighting\MultiCharacterBraceHighlightingTests.cs (1)
30private class TestBraceMatchingService : IBraceMatchingService
Microsoft.CodeAnalysis.Features (1)
BraceMatching\BraceMatchingService.cs (1)
19internal class BraceMatchingService : IBraceMatchingService
19 references to IBraceMatchingService
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Interactive\BraceMatching\InteractiveBraceHighlightingTests.cs (1)
42workspace.GetService<IBraceMatchingService>(),
Microsoft.CodeAnalysis.EditorFeatures (3)
BraceMatching\BraceHighlightingViewTaggerProvider.cs (3)
36private readonly IBraceMatchingService _braceMatcherService; 44IBraceMatchingService braceMatcherService, 110IBraceMatchingService service,
Microsoft.CodeAnalysis.EditorFeatures.Cocoa (2)
CommandHandlers\GoToMatchingBraceCommandHandler.cs (2)
27private readonly IBraceMatchingService _braceMatchingService; 32public GoToMatchingBraceCommandHandler(IBraceMatchingService braceMatchingService, IGlobalOptionService globalOptions)
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (5)
BraceHighlighting\AbstractBraceHighlightingTests.cs (2)
66internal virtual IBraceMatchingService GetBraceMatchingService(TestWorkspace workspace) 67=> workspace.GetService<IBraceMatchingService>();
BraceHighlighting\MultiCharacterBraceHighlightingTests.cs (1)
27internal override IBraceMatchingService GetBraceMatchingService(TestWorkspace workspace)
BraceMatching\AbstractBraceMatcherTests.cs (2)
32var braceMatcher = workspace.GetService<IBraceMatchingService>();
Microsoft.CodeAnalysis.Features (2)
BraceMatching\BraceMatchingService.cs (1)
18[Export(typeof(IBraceMatchingService)), Shared]
BraceMatching\IBraceMatchingServiceExtensions.cs (1)
14this IBraceMatchingService service,
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures.UnitTests (1)
BraceMatching\BraceHighlightingTests.vb (1)
32workspace.GetService(Of IBraceMatchingService),
Microsoft.VisualStudio.LanguageServices (3)
Implementation\AbstractVsTextViewFilter.cs (3)
165var braceMatcher = ComponentModel.GetService<IBraceMatchingService>(); 179internal static int GetPairExtentsWorker(ITextView textView, IBraceMatchingService braceMatcher, IGlobalOptionService globalOptions, int iLine, int iIndex, TextSpan[] pSpan, bool extendSelection, CancellationToken cancellationToken)
Microsoft.VisualStudio.LanguageServices.UnitTests (2)
AbstractTextViewFilterTests.vb (2)
248Dim braceMatcher = workspace.ExportProvider.GetExportedValue(Of IBraceMatchingService)() 270Dim braceMatcher = workspace.ExportProvider.GetExportedValue(Of IBraceMatchingService)()