antlr/tool/playground/L.g

8 lines
162 B
Plaintext

lexer grammar L;
STRING_START : '"' {pushMode(STRING_MODE); more();} ;
WS : ' '|'
' {skip();} ;
mode STRING_MODE;
STRING : '"' {popMode();} ;
ANY : . {more();} ;