blob: 64ec3c193b48780cda4f2628e3530d1a4bafe355 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// DO NOT MODIFY THIS FILE.
//
// This file describes the tokens that will be available to the parser
// that uses the grammar described in Simple.cfg.
lexer grammar SimpleLexer;
X
: 'x'
;
WS
: (' ' | '\t' | '\n' | '\r' | '\f')+ -> skip
;
|