Home | History | Annotate | Download | only in ast-output

Lines Matching refs:EXPR

18         EXPR;
82 : expression -> ^(EXPR expression)
83 | -> EXPR
96 -> ^(EXPR expression? statement* type+)
200 ( 'else' s2=statement -> ^('if' ^(EXPR expression) $s1 $s2)
201 | -> ^('if' ^(EXPR expression) $s1)
422 ast_test :input => "1+2", :rule => :r11, :ast => "(EXPR (+ 1 2))"
424 ast_test :input => "", :rule => :r11, :ast => "EXPR"
434 ast_test :input => "1+2 int", :rule => :r14, :ast => "(EXPR (+ 1 2) int)"
436 ast_test :input => "1+2 int bool", :rule => :r14, :ast => "(EXPR (+ 1 2) int bool)"
438 ast_test :input => "int bool", :rule => :r14, :ast => "(EXPR int bool)"
440 ast_test :input => "fooze fooze int bool", :rule => :r14, :ast => "(EXPR fooze fooze int bool)"
442 ast_test :input => "7+9 fooze fooze int bool", :rule => :r14, :ast => "(EXPR (+ 7 9) fooze fooze int bool)"
492 ast_test :input => "if ( 1 + 2 ) fooze", :rule => :r36, :ast => "(if (EXPR (+ 1 2)) fooze)"