1 write to _text
Microsoft.CodeAnalysis.ExpressionEvaluator.FunctionResolver (1)
VisualBasic\Scanner.cs (1)
59
_text
= text;
9 references to _text
Microsoft.CodeAnalysis.ExpressionEvaluator.FunctionResolver (9)
VisualBasic\Scanner.cs (9)
83
int length =
_text
.Length;
84
while (_offset < length && char.IsWhiteSpace(
_text
[_offset]))
97
var text =
_text
.Substring(_offset, n);
108
var c =
_text
[_offset++];
112
if (n > 0 && _offset + n < length &&
_text
[_offset + n] == ']')
116
var text =
_text
.Substring(_offset, n);
129
int length =
_text
.Length - _offset;
130
if (length > 0 && UnicodeCharacterUtilities.IsIdentifierStartCharacter(
_text
[_offset]))
133
while (n < length && UnicodeCharacterUtilities.IsIdentifierPartCharacter(
_text
[_offset + n]))