Home | History | Annotate | Download | only in parser

Lines Matching refs:lexer

54      * @param lexer the lexer to use to parse the header
56 protected ErrorInfoParser(Lexer lexer) {
57 super(lexer);
74 while (lexer.lookAhead(0) != '\n') {
79 this.lexer.SPorHT();
80 this.lexer.match('<');
81 URLParser urlParser = new URLParser((Lexer) this.lexer);
84 this.lexer.match('>');
85 this.lexer.SPorHT();
90 if ( lexer.lookAhead(0) == ',' ) {
91 this.lexer.match(',');