1
0
Fork 0
mirror of https://github.com/Reuh/candran.git synced 2025-10-27 17:59:30 +00:00

Added 0.5.0 tests

Also removed an error thrown when the start of an implicit push looks
like an assignment...
This commit is contained in:
Étienne Fildadut 2017-08-25 19:57:02 +02:00
parent d249c353c5
commit 724249555f
4 changed files with 98 additions and 5 deletions

View file

@ -349,7 +349,7 @@ local G = { V"Lua",
ImplicitPushStat = tagC("Push", commaSep(V"Expr", "RetList") * sym(";")^-1);
NameList = tagC("NameList", commaSep(V"Id"));
VarList = tagC("VarList", commaSep(V"VarExpr", "VarList"));
VarList = tagC("VarList", commaSep(V"VarExpr"));
ExprList = tagC("ExpList", commaSep(V"Expr", "ExprList"));
Expr = V"OrExpr";