1 write to _indentations
Microsoft.CodeAnalysis.CSharp (1)
Syntax\SyntaxNormalizer.cs (1)
153
_indentations
= ArrayBuilder<SyntaxTrivia>.GetInstance(capacity);
8 references to _indentations
Microsoft.CodeAnalysis.CSharp (8)
Syntax\SyntaxNormalizer.cs (8)
78
if (
_indentations
!= null)
80
_indentations
.Free();
151
if (
_indentations
== null)
157
_indentations
.EnsureCapacity(capacity);
161
for (int i =
_indentations
.Count; i <= count; i++)
165
:
_indentations
[i - 1].ToString() + _indentWhitespace;
166
_indentations
.Add(_useElasticTrivia ? SyntaxFactory.ElasticWhitespace(text) : SyntaxFactory.Whitespace(text));
169
return
_indentations
[count];