1.INT : '-'? DIGIT+ ; FLOAT : ('-'|'+')? DIGIT+ '.' DIGIT* (('e' | 'E') ('+' | '-')? (DIGIT)+)? ;
2. INT_OR_FLOAT : '-'? DIGIT+ FLOAT? ; fragment FLOAT : '.' DIGIT* EXPONENT? ; fragment EXPONENT: ('e' | 'E') ('+' | '-')? (DIGIT)+; Which one is quicker? I think the 2th is quicker. Because in the 1st lex rule, A DFA is needed to predict if it is a INT or FLOAT. Am I right? Thanks Best Regards, Young --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
List: http://www.antlr.org/mailman/listinfo/antlr-interest Unsubscribe: http://www.antlr.org/mailman/options/antlr-interest/your-email-address