I started using Antlr today.  Being cautious, I tried to write a parser
for a tiny grammar by commenting out almost everything from the online
demo and then adding my code incrementally.  I got errors that can be
reduced to this grammar file:

        grammar comment_test;
        /** Comment 1 */
        /** Comment 2 */
        INT         :  '0'..'9'+ ;

 

This generated the error message:

         syntax error: antlr: comment_test.g:3:1: unexpected token: /**
Comment 2 */

 

Changing either of the comment start characters from /** to /* makes the
error go away.  It appears that Antlr will not accept back to back
comments in a grammar file if both start with /**

    Larry


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 [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/il-antlr-interest?hl=en.

Reply via email to