1 write to _stringBuilder
CSharpSyntaxGenerator (1)
SourceGenerator.cs (1)
178_stringBuilder = stringBuilder;
6 references to _stringBuilder
CSharpSyntaxGenerator (6)
SourceGenerator.cs (6)
184if (_position == _stringBuilder.Length) 189return _stringBuilder[_position]; 194if (_position == _stringBuilder.Length) 199return _stringBuilder[_position++]; 204var charsToCopy = Math.Min(count, _stringBuilder.Length - _position); 205_stringBuilder.CopyTo(_position, buffer, index, charsToCopy);