1 implementation of GetStringIndentationRegionsAsync
Microsoft.CodeAnalysis.CSharp.Features (1)
StringIndentation\CSharpStringIndentationService.cs (1)
28public async Task<ImmutableArray<StringIndentationRegion>> GetStringIndentationRegionsAsync(
2 references to GetStringIndentationRegionsAsync
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
StringIndentation\StringIndentationTests.cs (1)
34var regions = await service.GetStringIndentationRegionsAsync(document, root.FullSpan, CancellationToken.None).ConfigureAwait(false);
Microsoft.CodeAnalysis.EditorFeatures (1)
StringIndentation\StringIndentationTaggerProvider.cs (1)
86var regions = await service.GetStringIndentationRegionsAsync(document, snapshotSpan.Span.ToTextSpan(), cancellationToken).ConfigureAwait(false);