1 write to _text
Microsoft.CodeAnalysis.ExpressionEvaluator.FunctionResolver (1)
CSharp\Scanner.cs (1)
64_text = text;
9 references to _text
Microsoft.CodeAnalysis.ExpressionEvaluator.FunctionResolver (9)
CSharp\Scanner.cs (9)
88int length = _text.Length; 89while (_offset < length && char.IsWhiteSpace(_text[_offset])) 99var c = _text[_offset++]; 104else if (c == '@' && _offset < length && UnicodeCharacterUtilities.IsIdentifierStartCharacter(_text[_offset])) 117Debug.Assert(UnicodeCharacterUtilities.IsIdentifierStartCharacter(_text[_offset - 1])); 118Debug.Assert(_offset == 1 || !UnicodeCharacterUtilities.IsIdentifierPartCharacter(_text[_offset - 2])); 120int length = _text.Length; 122while ((_offset < length) && UnicodeCharacterUtilities.IsIdentifierPartCharacter(_text[_offset])) 126var text = _text.Substring(start, _offset - start);