compute block added

This commit is contained in:
Jordi Baylina
2019-08-29 16:26:19 +02:00
parent 597deb1eaa
commit f05c4e1338
7 changed files with 229 additions and 168 deletions

View File

@@ -131,6 +131,8 @@ function exec(ctx, ast) {
return execFunctionCall(ctx, ast);
} else if (ast.type == "BLOCK") {
return execBlock(ctx, ast);
} else if (ast.type == "COMPUTE") {
return ;
} else if (ast.type == "FOR") {
return execFor(ctx, ast);
} else if (ast.type == "WHILE") {