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)
83int length = _text.Length; 84while (_offset < length && char.IsWhiteSpace(_text[_offset])) 97var text = _text.Substring(_offset, n); 108var c = _text[_offset++]; 112if (n > 0 && _offset + n < length && _text[_offset + n] == ']') 116var text = _text.Substring(_offset, n); 129int length = _text.Length - _offset; 130if (length > 0 && UnicodeCharacterUtilities.IsIdentifierStartCharacter(_text[_offset])) 133while (n < length && UnicodeCharacterUtilities.IsIdentifierPartCharacter(_text[_offset + n]))