diff options
author | daurnimator <quae@daurnimator.com> | 2017-04-26 17:17:04 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-04-26 17:27:01 +1000 |
commit | 382e28086f97085edbf099247949c3f801cc0ed0 (patch) | |
tree | c4a60b9f09828a7aa881d36b757896ae3ac7915a /src | |
parent | 46049c9df73a446192957af1f50df19167c79f07 (diff) | |
download | fengari-382e28086f97085edbf099247949c3f801cc0ed0.tar.gz fengari-382e28086f97085edbf099247949c3f801cc0ed0.tar.bz2 fengari-382e28086f97085edbf099247949c3f801cc0ed0.zip |
Remove print_version
Diffstat (limited to 'src')
-rw-r--r-- | src/defs.js | 5 | ||||
-rw-r--r-- | src/lua.js | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/defs.js b/src/defs.js index e1366b0..e24f419 100644 --- a/src/defs.js +++ b/src/defs.js @@ -115,10 +115,6 @@ const LUA_RIDX_MAINTHREAD = 1; const LUA_RIDX_GLOBALS = 2; const LUA_RIDX_LAST = LUA_RIDX_GLOBALS; -const print_version = function() { - console.log(FENGARI_COPYRIGHT); -}; - class lua_Debug { constructor() { @@ -283,6 +279,5 @@ module.exports.LUA_VERSUFFIX = LUA_VERSUFFIX; module.exports.constant_types = constant_types; module.exports.lua_Debug = lua_Debug; module.exports.lua_upvalueindex = lua_upvalueindex; -module.exports.print_version = print_version; module.exports.thread_status = thread_status; module.exports.to_luastring = to_luastring; @@ -69,6 +69,5 @@ module.exports.LUA_VERSION_RELEASE = defs.LUA_VERSION_RELEASE; module.exports.LUA_VERSUFFIX = defs.LUA_VERSUFFIX; module.exports.lua_Debug = defs.lua_Debug; module.exports.lua_upvalueindex = defs.lua_upvalueindex; -module.exports.print_version = defs.print_version; module.exports.thread_status = defs.thread_status; module.exports.to_luastring = defs.to_luastring; |