[VM] Push entire Arg object to stack instead of just its value.

This commit is contained in:
jtuu 2019-10-02 20:16:54 +03:00
parent 2e672c12b2
commit d9110f0041

View File

@ -205,7 +205,7 @@ export class VirtualMachine {
case OP_ARG_PUSHW.code:
case OP_ARG_PUSHS.code:
// push arg as-is
this.push_arg_stack(exec, arg0);
this.push_arg_stack(exec, inst.args[0]);
break;
// arithmetic operations
case OP_ADD.code: