133134135136137138139140
{ token = (Token) tokens.elementAt(count++); } else { throw new ParseException ("No More Tokens"); } }
144145146147148149150151
* column number of the current token to the error * message. */ private void err (String name) throws ParseException { throw new ParseException (name + " at [ line: " + token.getLine() + " col: "+token.getCol()+" ]"); }
134135136137138139140141
145146147148149150151152