Home | History | Annotate | Download | only in antlr3

Lines Matching refs:Parser

55     parser is protected.
131 lexer, parser, and tree grammars. This is all the parsing
156 ## State of a lexer, parser, or tree parser are collected into a state
179 reset the parser's state; subclasses must rewinds the input stream
263 This method sets errorRecovery to indicate the parser is recovering
265 To get out of recovery mode, the parser must successfully match
403 Get number of recognition errors (lexer, parser, tree parser). Each
404 recognizer tracks its own number. So parser and lexer each have
497 rule invocation, the parser pushes the set of tokens that can
564 So, you cna see that the parser walks up call chain looking
683 ')'. When the parser returns from the nested call to expr, it
775 action in the parser or tree parser works. It simply creates
819 Return List<String> of the rules in your parser instance
822 in the parser java code a rule is invoked.
1001 Errors from the lexer are never passed to the parser. Either you want
1006 lexing then you should not throw an exception to the parser--it has already
1015 until you get a good one; errors are not passed through to the parser.
1169 Parser or TreeParser.getMissingSymbol().
1362 class Parser(BaseRecognizer):
1364 @brief Baseclass for generated parser classes.
1401 """Set the token stream and reset the parser"""