From 6d3c16cb0b7a859ff45e62ed83252f667d3b74d5 Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Wed, 1 Mar 2017 15:16:07 +0100 Subject: [Parsing tests] CALL --- src/lcode.js | 2 +- src/lvm.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/lcode.js b/src/lcode.js index f69bc34..7fd958e 100644 --- a/src/lcode.js +++ b/src/lcode.js @@ -359,7 +359,7 @@ const luaK_patchclose = function(fs, list, level) { ** line information. Return 'i' position. */ const luaK_code = function(fs, i) { - console.log(OpCodes[i.opcode]); + // console.log(OpCodes[i.opcode]); let f = fs.f; dischargejpc(fs); /* 'pc' will change */ /* put new instruction in code array */ diff --git a/src/lvm.js b/src/lvm.js index 0ff433e..75fe44c 100644 --- a/src/lvm.js +++ b/src/lvm.js @@ -128,6 +128,7 @@ const luaV_execute = function(L) { if (i.breakpoint) // TODO: remove, used until lapi return; + console.log(`> ${opcode}`); switch (opcode) { case "OP_MOVE": { L.stack[ra] = L.stack[RB(L, base, i)]; -- cgit v1.2.3-54-g00ecf