mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
15 lines
246 B
Text
15 lines
246 B
Text
|
class C::Parser
|
||
|
token tSOMETHING
|
||
|
rule
|
||
|
statement
|
||
|
: tSOMETHING
|
||
|
| 'if' statement 'then' statement
|
||
|
| 'if' statement 'then' statement 'else' statement
|
||
|
;
|
||
|
|
||
|
dummy
|
||
|
: tSOMETHING '+' tSOMETHING
|
||
|
| tSOMETHING '-' tSOMETHING
|
||
|
;
|
||
|
|