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)
78if (_indentations != null) 80_indentations.Free(); 151if (_indentations == null) 157_indentations.EnsureCapacity(capacity); 161for (int i = _indentations.Count; i <= count; i++) 165: _indentations[i - 1].ToString() + _indentWhitespace; 166_indentations.Add(_useElasticTrivia ? SyntaxFactory.ElasticWhitespace(text) : SyntaxFactory.Whitespace(text)); 169return _indentations[count];