7 lines
151 B
Plaintext
7 lines
151 B
Plaintext
|
parser grammar CKErrorParser;
|
||
|
options { tokenVocab = CKGeneralLexer; }
|
||
|
|
||
|
prog: definePair+ ;
|
||
|
|
||
|
definePair: CKGENERAL_DEFINE CKGENERAL_ID CKGENERAL_NUM ;
|