Home | History | Annotate | Download | only in parser

Lines Matching refs:lexer

54      * @param lexer the lexer to use to parse the header
56 protected InReplyToParser(Lexer lexer) {
57 super(lexer);
74 while (lexer.lookAhead(0) != '\n') {
78 this.lexer.match(TokenTypes.ID);
79 Token token = lexer.getNextToken();
80 if (lexer.lookAhead(0) == '@') {
81 this.lexer.match('@');
82 this.lexer.match(TokenTypes.ID);
83 Token secToken = lexer.getNextToken();
90 this.lexer.SPorHT();
94 while (lexer.lookAhead(0) == ',') {
95 this.lexer.match(',');
96 this.lexer.SPorHT();
100 this.lexer.match(TokenTypes.ID);
101 token = lexer.getNextToken();
102 if (lexer.lookAhead(0) == '@') {
103 this.lexer.match('@');
104 this.lexer.match(TokenTypes.ID);
105 Token secToken = lexer.getNextToken();