From 4650ac9ab96eadcd5918c56c6eb93618ac054bba Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Sat, 11 Feb 2017 15:38:14 +0100 Subject: SELF --- tests/lvm.js | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'tests/lvm.js') 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 -- cgit v1.2.3-54-g00ecf