Beispiel #1
0
 public Parser_Base(lexer input, int k)
 {
     this.input = input;
     this.k     = k;
     lookahead  = new Token[k];
     for (int i = 1; i <= k; i++)
     {
         consume();
     }
 }
Beispiel #2
0
 public Parser(lexer input, int k) : base(input, k)
 {
     ;
 }