summaryrefslogtreecommitdiff
path: root/src/GF/GFCC/Raw/GFCCRaw.cf
blob: bedaef685eb274a99f96d62739b5256591175900 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Grm. Grammar ::= [RExp] ;

App.  RExp ::= "(" CId [RExp] ")" ;
AId.  RExp ::= CId ;
AInt. RExp ::= Integer ;
AStr. RExp ::= String ;
AFlt. RExp ::= Double ;
AMet. RExp ::= "?" ;

terminator RExp "" ;

token CId (('_' | letter) (letter | digit | '\'' | '_')*) ;