1 write to _sourceText
CSharpSyntaxGenerator (1)
SourceGenerator.cs (1)
138
_sourceText
= sourceText;
6 references to _sourceText
CSharpSyntaxGenerator (6)
SourceGenerator.cs (6)
144
if (_position ==
_sourceText
.Length)
149
return
_sourceText
[_position];
154
if (_position ==
_sourceText
.Length)
159
return
_sourceText
[_position++];
164
var charsToCopy = Math.Min(count,
_sourceText
.Length - _position);
165
_sourceText
.CopyTo(_position, buffer, index, charsToCopy);