Skip to content
Snippets Groups Projects
Commit de2147cc authored by Valentin Perrelle's avatar Valentin Perrelle Committed by Virgile Prevosto
Browse files

[Aorai] Use semicolons to separate metavariable assignements

parent 7fcc03cc
No related branches found
No related tags found
No related merge requests found
...@@ -3,11 +3,12 @@ ...@@ -3,11 +3,12 @@
%deterministic; %deterministic;
$x : int; $x : int;
$y : int;
a : { CALL(main) } -> b; a : { CALL(main) } -> b;
b : b :
{ CALL(f) } $x := f().x -> c { CALL(f) } $y := $x; $x := f().x -> c
| { CALL(g) } -> d | { CALL(g) } -> d
; ;
......
...@@ -400,8 +400,8 @@ actions ...@@ -400,8 +400,8 @@ actions
; ;
non_empty_actions non_empty_actions
: non_empty_actions action { $1 @ [$2] } : non_empty_actions SEMI_COLON action { $1 @ [$3] }
| action { [$1] } | action { [$1] }
; ;
action action
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment