diff options
Diffstat (limited to 'src/lua.js')
| -rw-r--r-- | src/lua.js | 33 | 
1 files changed, 11 insertions, 22 deletions
@@ -6,14 +6,6 @@ const ldebug = require("./ldebug.js");  const ldo    = require("./ldo.js");  const lstate = require("./lstate.js"); -module.exports.FENGARI_AUTHORS         = defs.FENGARI_AUTHORS; -module.exports.FENGARI_COPYRIGHT       = defs.FENGARI_COPYRIGHT; -module.exports.FENGARI_RELEASE         = defs.FENGARI_RELEASE; -module.exports.FENGARI_VERSION         = defs.FENGARI_VERSION; -module.exports.FENGARI_VERSION_MAJOR   = defs.FENGARI_VERSION_MAJOR; -module.exports.FENGARI_VERSION_MINOR   = defs.FENGARI_VERSION_MINOR; -module.exports.FENGARI_VERSION_NUM     = defs.FENGARI_VERSION_NUM; -module.exports.FENGARI_VERSION_RELEASE = defs.FENGARI_VERSION_RELEASE;  module.exports.LUA_AUTHORS             = defs.LUA_AUTHORS;  module.exports.LUA_COPYRIGHT           = defs.LUA_COPYRIGHT;  module.exports.LUA_ERRERR              = defs.thread_status.LUA_ERRERR; @@ -34,7 +26,7 @@ module.exports.LUA_MASKLINE            = defs.LUA_MASKLINE;  module.exports.LUA_MASKRET             = defs.LUA_MASKRET;  module.exports.LUA_MINSTACK            = defs.LUA_MINSTACK;  module.exports.LUA_MULTRET             = defs.LUA_MULTRET; -module.exports.LUA_NUMTAGS             = defs.LUA_NUMTAGS; +module.exports.LUA_NUMTAGS             = defs.constant_types.LUA_NUMTAGS;  module.exports.LUA_OK                  = defs.thread_status.LUA_OK;  module.exports.LUA_OPADD               = defs.LUA_OPADD;  module.exports.LUA_OPBAND              = defs.LUA_OPBAND; @@ -59,16 +51,16 @@ module.exports.LUA_RIDX_GLOBALS        = defs.LUA_RIDX_GLOBALS;  module.exports.LUA_RIDX_LAST           = defs.LUA_RIDX_LAST;  module.exports.LUA_RIDX_MAINTHREAD     = defs.LUA_RIDX_MAINTHREAD;  module.exports.LUA_SIGNATURE           = defs.LUA_SIGNATURE; -module.exports.LUA_TNONE               = defs.CT.LUA_TNONE; -module.exports.LUA_TNIL                = defs.CT.LUA_TNIL; -module.exports.LUA_TBOOLEAN            = defs.CT.LUA_TBOOLEAN; -module.exports.LUA_TLIGHTUSERDATA      = defs.CT.LUA_TLIGHTUSERDATA; -module.exports.LUA_TNUMBER             = defs.CT.LUA_TNUMBER; -module.exports.LUA_TSTRING             = defs.CT.LUA_TSTRING; -module.exports.LUA_TTABLE              = defs.CT.LUA_TTABLE; -module.exports.LUA_TFUNCTION           = defs.CT.LUA_TFUNCTION; -module.exports.LUA_TUSERDATA           = defs.CT.LUA_TUSERDATA; -module.exports.LUA_TTHREAD             = defs.CT.LUA_TTHREAD; +module.exports.LUA_TNONE               = defs.constant_types.LUA_TNONE; +module.exports.LUA_TNIL                = defs.constant_types.LUA_TNIL; +module.exports.LUA_TBOOLEAN            = defs.constant_types.LUA_TBOOLEAN; +module.exports.LUA_TLIGHTUSERDATA      = defs.constant_types.LUA_TLIGHTUSERDATA; +module.exports.LUA_TNUMBER             = defs.constant_types.LUA_TNUMBER; +module.exports.LUA_TSTRING             = defs.constant_types.LUA_TSTRING; +module.exports.LUA_TTABLE              = defs.constant_types.LUA_TTABLE; +module.exports.LUA_TFUNCTION           = defs.constant_types.LUA_TFUNCTION; +module.exports.LUA_TUSERDATA           = defs.constant_types.LUA_TUSERDATA; +module.exports.LUA_TTHREAD             = defs.constant_types.LUA_TTHREAD;  module.exports.LUA_VERSION             = defs.LUA_VERSION;  module.exports.LUA_VERSION_MAJOR       = defs.LUA_VERSION_MAJOR;  module.exports.LUA_VERSION_MINOR       = defs.LUA_VERSION_MINOR; @@ -78,9 +70,6 @@ module.exports.LUA_VERSUFFIX           = defs.LUA_VERSUFFIX;  module.exports.LUA_YIELD               = defs.thread_status.LUA_YIELD;  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.to_uristring            = defs.to_uristring;  module.exports.LUA_CDIR                = defs.LUA_CDIR;  module.exports.LUA_CPATH_DEFAULT       = defs.LUA_CPATH_DEFAULT;  module.exports.LUA_EXEC_DIR            = defs.LUA_EXEC_DIR;  | 
