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