Home | History | Annotate | Download | only in functional
      1 lexer grammar t010lexer;
      2 options {
      3   language = JavaScript;
      4 }
      5 
      6 IDENTIFIER: ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*;
      7 WS: (' ' | '\n')+;
      8