All content with label faq_translation.
Related Labels:
faq_lexing
How do I access hidden tokens from parser?(ANTLR 3)
Rules in the lexer can send tokens to the parser on different "channels". See How do I track whitespace, comments, and other hidden channels during AST construction? For example, COMMENT : '/' . '/' ; But, how do you access them from the parser ... Other labels:
faq_lexing
How do I combine fuzzy parsing and stream rewriting?(ANTLR 3)
you want to parse just pieces of, say, a Java file using filter mode (fuzzy parsing) and do some replacement like TokenRewriteStream does, how can you do it? TokenRewriteStream requires use of a parser/lexer combo whereas ... Other labels:
faq_lexing