diff options
author | Benoit Giannangeli <giann008@gmail.com> | 2017-02-11 15:38:14 +0100 |
---|---|---|
committer | Benoit Giannangeli <giann008@gmail.com> | 2017-02-11 15:38:40 +0100 |
commit | 4650ac9ab96eadcd5918c56c6eb93618ac054bba (patch) | |
tree | e29a16e24c5a245889fff7bf74f701720a8c8227 | |
parent | a7b98a2e62c49a6c0ced2b57ddcea9bb6bab108e (diff) | |
download | fengari-4650ac9ab96eadcd5918c56c6eb93618ac054bba.tar.gz fengari-4650ac9ab96eadcd5918c56c6eb93618ac054bba.tar.bz2 fengari-4650ac9ab96eadcd5918c56c6eb93618ac054bba.zip |
SELF
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | src/lvm.js | 11 | ||||
-rw-r--r-- | tests/lvm.js | 29 |
3 files changed, 41 insertions, 1 deletions
@@ -17,7 +17,7 @@ - [x] OP_SETTABUP - [x] OP_SETTABLE - [x] OP_NEWTABLE - - [ ] OP_SELF + - [x] OP_SELF - [x] OP_ADD - [x] OP_SUB - [x] OP_MUL @@ -149,6 +149,17 @@ class LuaVM { break; } case "OP_SELF": { + let table = L.stack[this.RB(base, i)]; + let key = this.RKC(base, k, i); + + L.stack[ra + 1] = table; + + // if (!table.ttistable() || !table.metatable.__index(table, key)) { + // // __index + // } else { + L.stack[ra] = table.metatable.__index(table, key); + // } + break; } case "OP_ADD": { diff --git a/tests/lvm.js b/tests/lvm.js index 1af0c48..3d7325f 100644 --- a/tests/lvm.js +++ b/tests/lvm.js @@ -601,4 +601,33 @@ test('SETTABUP, GETTABUP', function (t) { "world", "Program output is correct" ); +}); + + +test('SELF', function (t) { + let luaCode = ` + local t = {} + + t.value = "hello" + t.get = function (self) + return self.value + end + + return t:get() + `, vm; + + t.plan(1); + + t.comment("Running following code: \n" + luaCode); + + // t.doesNotThrow(function () { + vm = getVM(luaCode); + vm.execute(); + // }, "Program executed without errors"); + + t.strictEqual( + vm.L.stack[vm.L.top - 1].value, + "hello", + "Program output is correct" + ); });
\ No newline at end of file |