2 instantiations of StringIndentationRegion
Microsoft.CodeAnalysis.CSharp.Features (2)
StringIndentation\CSharpStringIndentationService.cs (2)
90result.Add(new StringIndentationRegion(indentSpan)); 123result.Add(new StringIndentationRegion(indentSpan, builder.ToImmutable()));
8 references to StringIndentationRegion
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
StringIndentation\StringIndentationTests.cs (2)
40private static string ApplyRegions(string val, ImmutableArray<StringIndentationRegion> regions) 45foreach (var region in regions)
Microsoft.CodeAnalysis.CSharp.Features (4)
StringIndentation\CSharpStringIndentationService.cs (4)
28public async Task<ImmutableArray<StringIndentationRegion>> GetStringIndentationRegionsAsync( 34using var result = TemporaryArray<StringIndentationRegion>.Empty; 79SourceText text, SyntaxToken token, ref TemporaryArray<StringIndentationRegion> result, CancellationToken cancellationToken) 94SourceText text, InterpolatedStringExpressionSyntax interpolatedString, ref TemporaryArray<StringIndentationRegion> result, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.EditorFeatures (1)
StringIndentation\StringIndentationTaggerProvider.cs (1)
93foreach (var region in regions)
Microsoft.CodeAnalysis.Features (1)
StringIndentation\IStringIndentationService.cs (1)
15Task<ImmutableArray<StringIndentationRegion>> GetStringIndentationRegionsAsync(Document document, TextSpan textSpan, CancellationToken cancellationToken);