public Parser(TokenBuffer t) { Init(); _input = t; }
public Parser(Lexer lex) { Init(); _input = new TokenBuffer(lex, LookaheadDepth); }