diff options
| author | daurnimator <quae@daurnimator.com> | 2018-01-11 23:33:34 +1100 | 
|---|---|---|
| committer | daurnimator <quae@daurnimator.com> | 2018-01-11 23:35:56 +1100 | 
| commit | a39f24f204a15cb4587e75b38424952fe444d9d2 (patch) | |
| tree | 5047cd8b5b73bda87142405273c0dcc3203e71f4 /tests/lauxlib.js | |
| parent | b0b0b21f4394fabf41d6e3556f455a0a740f3f08 (diff) | |
| download | fengari-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/lauxlib.js')
| -rw-r--r-- | tests/lauxlib.js | 9 | 
1 files changed, 5 insertions, 4 deletions
| diff --git a/tests/lauxlib.js b/tests/lauxlib.js index d484edb..8d57ecb 100644 --- a/tests/lauxlib.js +++ b/tests/lauxlib.js @@ -1,9 +1,10 @@  "use strict"; -const test       = require('tape'); +const test = require('tape'); -const lua        = require('../src/lua.js'); -const lauxlib    = require("../src/lauxlib.js"); +const lua     = require('../src/lua.js'); +const lauxlib = require("../src/lauxlib.js"); +const {to_luastring} = require("../src/fengaricore.js");  test('luaL_ref, lua_rawgeti, luaL_unref, LUA_REGISTRYINDEX', function (t) {      let L; @@ -12,7 +13,7 @@ test('luaL_ref, lua_rawgeti, luaL_unref, LUA_REGISTRYINDEX', function (t) {      t.doesNotThrow(function () {          L = lauxlib.luaL_newstate(); -        lua.lua_pushstring(L, lua.to_luastring("hello references!")); +        lua.lua_pushstring(L, to_luastring("hello references!"));          let r = lauxlib.luaL_ref(L, lua.LUA_REGISTRYINDEX); // pops a value, stores it and returns a reference          lua.lua_rawgeti(L, lua.LUA_REGISTRYINDEX, r); // pushes a value associated with the reference | 
