1 implementation of GetMatchingBracesAsync
Microsoft.CodeAnalysis.Features (1)
BraceMatching\BraceMatchingService.cs (1)
24public async Task<BraceMatchingResult?> GetMatchingBracesAsync(Document document, int position, BraceMatchingOptions options, CancellationToken cancellationToken)
2 references to GetMatchingBracesAsync
Microsoft.CodeAnalysis.Features (2)
BraceMatching\IBraceMatchingServiceExtensions.cs (2)
21var braces1 = await service.GetMatchingBracesAsync(document, position, options, cancellationToken).ConfigureAwait(false); 29braces2 = await service.GetMatchingBracesAsync(document, position - 1, options, cancellationToken).ConfigureAwait(false);