Am Thursday 07 May 2009 14:10:22 schrieb Thomas Dill:
> Hi there.
>
>
>
> I still got the following Problem:
>
>
>
> In the syntax, I want to parse, a comment line starts with "-*" and ends at
> the end of the line. It's possible that an asterisk can appear in a "text",
> too.
>

i have a working one-line comment version like this ( comments start with # 
or // and go until end of the line):


NL: ('\r'? '\n')+ { skip();};
SINGLE_COMMENT: ('#' | '//') ~('\r' | '\n')* NL { skip();};

so change this to:
SINGLE_COMMENT: '-*' ~('\r' | '\n')* NL { skip();};

doesn't work?

cheers,
 Michael

List: http://www.antlr.org/mailman/listinfo/antlr-interest
Unsubscribe: 
http://www.antlr.org/mailman/options/antlr-interest/your-email-address

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"il-antlr-interest" group.
To post to this group, send email to il-antlr-interest@googlegroups.com
To unsubscribe from this group, send email to 
il-antlr-interest+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/il-antlr-interest?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to