1 write to _cursor
Microsoft.ML.Transforms (1)
Expression\Lexer.cs (1)
61_cursor = cursor;
19 references to _cursor
Microsoft.ML.Transforms (19)
Expression\Lexer.cs (19)
70private bool Eof { get { return _cursor.Eof; } } 77get { return _cursor.ChCur; } 85return _cursor.ChNext(); 90return _cursor.ChPeek(ich); 98_ichMinTok = _cursor.IchCur; 106ReportError(_ichMinTok, _cursor.IchCur, eid, null); 111ReportError(_ichMinTok, _cursor.IchCur, eid, args); 123var span = new TextSpan(_ichMinTok, _cursor.IchCur); 163return new EofToken(GetTextSpan(_cursor.IchCur, _cursor.IchCur)); 542int ichErr = _cursor.IchCur; 606ReportError(ichErr, _cursor.IchCur, ErrId.BadEscape); 622ReportError(ichErr, _cursor.IchCur, ErrId.BadEscape); 687int ichErr = _cursor.IchCur; 693ReportError(ichErr, _cursor.IchCur, ErrId.BadChar, LexCharUtils.GetUniEscape(u)); 722int ichErr = _cursor.IchCur; 750ReportError(ichErr, _cursor.IchCur, ErrId.UnterminatedComment); 799int ichMin = _cursor.IchCur; 817_queue.Enqueue(new NewLineToken(GetTextSpan(ichMin, _cursor.IchCur), true));