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