Merge: Basename fix
[nit.git] / contrib / nitcc / tests / text.sablecc
1 Grammar text;
2
3 Lexer
4
5 d = '0' | #49 | '2'..'3' | #52..#53 | '6'..#55 | #56..'9' ;
6 n = d+;
7
8 Parser
9
10 p = n 'a' #98;