Tagged Questions

0
votes
1answer
370 views

Comment lexer rule

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 ...