diff options
author | Benoit Giannangeli <giann008@gmail.com> | 2017-05-02 15:01:54 +0200 |
---|---|---|
committer | Benoit Giannangeli <giann008@gmail.com> | 2017-05-03 13:28:11 +0200 |
commit | d231ed14d0816eb26856e948a9ab72f64d46c1eb (patch) | |
tree | 4e85b5237878770195aedb362b6bd446f7f2596c /src/lua.js | |
parent | 5ac211f983cd628dfb95a6add7e5386071f4dada (diff) | |
download | fengari-d231ed14d0816eb26856e948a9ab72f64d46c1eb.tar.gz fengari-d231ed14d0816eb26856e948a9ab72f64d46c1eb.tar.bz2 fengari-d231ed14d0816eb26856e948a9ab72f64d46c1eb.zip |
loadlib.js
Diffstat (limited to 'src/lua.js')
-rw-r--r-- | src/lua.js | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -81,6 +81,17 @@ module.exports.lua_Debug = defs.lua_Debug; module.exports.lua_upvalueindex = defs.lua_upvalueindex; module.exports.to_jsstring = defs.to_jsstring; module.exports.to_luastring = defs.to_luastring; +module.exports.LUA_VDIR = defs.LUA_VDIR; +module.exports.LUA_LDIR = defs.LUA_LDIR; +module.exports.LUA_CDIR = defs.LUA_CDIR; +module.exports.LUA_SHRDIR = defs.LUA_SHRDIR; +module.exports.LUA_PATH_DEFAULT = defs.LUA_PATH_DEFAULT; +module.exports.LUA_CPATH_DEFAULT = defs.LUA_CPATH_DEFAULT; +module.exports.LUA_ROOT = defs.LUA_ROOT; +module.exports.LUA_LDIR = defs.LUA_LDIR; +module.exports.LUA_CDIR = defs.LUA_CDIR; +module.exports.LUA_PATH_DEFAULT = defs.LUA_PATH_DEFAULT; +module.exports.LUA_CPATH_DEFAULT = defs.LUA_CPATH_DEFAULT; module.exports.lua_absindex = lapi.lua_absindex; module.exports.lua_atpanic = lapi.lua_atpanic; |