I'm new to ANTLR and i've come up with this lexer rule to parse out comments, will it work?
COMMENT_LINE : (COMMENT (. - LINE_ENDING)* LINE_ENDING){$channel=hidden};
(I couldn't find anything regarding syntax such as this in the docs)
|
feedback
|
|
Your rule doesn't compile at all. If you use ANTLRWorks to create a new lexer grammar, you can check a box to have it generate a lexer rule that matches single line comments. It generates this:
Alternatively, you can use something like this to match single line comments:
| |||||
feedback
|
-, will probably cause some sort of error. Can you explain what you mean by it? And can you give a couple of examples of the strings you're trying to parse? – Bart Kiers Dec 9 '09 at 8:44ANY_CHAR : . ;is not the last rule, the grammar will not work since any rule after that will never be able match anything sinceANY_CHARwill gobble up everything. But I guess Bojan has successfully answered your question, right? – Bart Kiers Dec 9 '09 at 9:11