Beispiel #1
0
 public Node createNode(Lex lex) throws ParserException {
   Node result = lex.front();
   if (!(result instanceof Argument)) throw new ParserException("");
   lex.popFront();
   return result;
 }