From a39f24f204a15cb4587e75b38424952fe444d9d2 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Thu, 11 Jan 2018 23:33:34 +1100 Subject: Move fengari specific things to src/fengaricore.js String manipulation functions now get exposed on 'fengari' object itself at top level --- tests/lvm.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/lvm.js') diff --git a/tests/lvm.js b/tests/lvm.js index 08c0c5e..7fba553 100644 --- a/tests/lvm.js +++ b/tests/lvm.js @@ -4,6 +4,7 @@ const test = require('tape'); const lua = require("../src/lua.js"); const lstring = require("../src/lstring.js"); +const {to_luastring} = require("../src/fengaricore.js"); const getState = require("./tests.js").getState; @@ -459,7 +460,7 @@ test('SETTABLE, GETTABLE', function (t) { ); t.deepEqual( - L.stack[L.top - 1].value.strong.get(lstring.luaS_hash(lua.to_luastring("two"))).value.jsstring(), // "two" + L.stack[L.top - 1].value.strong.get(lstring.luaS_hash(to_luastring("two"))).value.jsstring(), // "two" "world", "Program output is correct" ); @@ -518,7 +519,7 @@ test('SETTABUP, GETTABUP', function (t) { ); t.deepEqual( - L.stack[L.top - 1].value.strong.get(lstring.luaS_hash(lua.to_luastring("two"))).value.jsstring(), // "two" + L.stack[L.top - 1].value.strong.get(lstring.luaS_hash(to_luastring("two"))).value.jsstring(), // "two" "world", // "world" "Program output is correct" ); -- cgit v1.2.3-54-g00ecf