summaryrefslogtreecommitdiff
path: root/Homework/cs5300/project-three/out/production/p3-parser/data/ParenLexer.tokens
blob: 51e5258c802235276ca306224dbf127418e7ba17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// DO NOT MODIFY THIS FILE.
//
// This file describes the tokens that will be available to the parser
// that uses the grammar described in Paren.cfg.

lexer grammar ParenLexer;

OPAREN
  :  '('
  ;

CPAREN
  :  ')'
  ;

WS
  :  (' ' | '\t' | '\n' | '\r' | '\f')+ -> skip
  ;