Lines Matching full:line
67 * knows its state (such as current input symbol and line info) that
70 * perhaps print an entire line of input not just a single token, for example.
103 * Track the line (1-based) at which the error occurred in case this is
105 * unexpected char doesn't carry the line info.
111 /// The 0-based index into the line where the error occurred.
117 * imaginary nodes w/o line/col info. We now search backwards looking
118 * for most recent token with line/col info, but notify getErrorHeader()
160 this._line = _token.Line;
175 this._line = ((ICharStream)input).Line;
194 _line = info.GetInt32("Line");
292 public int Line
324 info.AddValue("Line", _line);
340 this._line = lastRealToken.Line;
352 if (payload.Line <= 0)
354 // imaginary node; no line/pos info; scan backwards
360 if (priorPayload != null && priorPayload.Line > 0)
362 // we found the most recent real line / pos info
363 this._line = priorPayload.Line;
382 this._line = payload.Line;
388 this._line = ((Tree.ITree)this._node).Line;