Parser patch from Christian

This commit is contained in:
Lesenechal Remi 2019-10-07 11:53:07 +02:00
parent bb86ba6ad0
commit 1401d03d62

View File

@ -591,7 +591,11 @@ assignment:
in {region; value}}
rhs:
expr { Expr $1 }
expr {
match $1 with
EConstr (NoneExpr e) -> (NoneExpr e : rhs)
| e -> Expr e
}
lhs:
path { Path $1 }