aboutsummaryrefslogtreecommitdiff
path: root/tests/lvm.js
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2018-01-11 23:33:34 +1100
committerdaurnimator <quae@daurnimator.com>2018-01-11 23:35:56 +1100
commita39f24f204a15cb4587e75b38424952fe444d9d2 (patch)
tree5047cd8b5b73bda87142405273c0dcc3203e71f4 /tests/lvm.js
parentb0b0b21f4394fabf41d6e3556f455a0a740f3f08 (diff)
downloadfengari-a39f24f204a15cb4587e75b38424952fe444d9d2.tar.gz
fengari-a39f24f204a15cb4587e75b38424952fe444d9d2.tar.bz2
fengari-a39f24f204a15cb4587e75b38424952fe444d9d2.zip
Move fengari specific things to src/fengaricore.js
String manipulation functions now get exposed on 'fengari' object itself at top level
Diffstat (limited to 'tests/lvm.js')
-rw-r--r--tests/lvm.js5
1 files changed, 3 insertions, 2 deletions
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"
);