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)
78if (_indentations != null) 80_indentations.Free(); 167if (_indentations == null) 173_indentations.EnsureCapacity(capacity); 177for (int i = _indentations.Count; i <= count; i++) 181: _indentations[i - 1].ToString() + _indentWhitespace; 182_indentations.Add(_useElasticTrivia ? SyntaxFactory.ElasticWhitespace(text) : SyntaxFactory.Whitespace(text)); 185return _indentations[count];