diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-26 16:32:03 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-27 22:43:22 +1000 |
commit | 7807868d67aa6f24a22eff2a62964a1bafb05ac7 (patch) | |
tree | a5ef7800fc0ed5bc562e679870b5b05be44071b8 /src | |
parent | d19e7de4602f180e700f237f64b5669605d232b4 (diff) | |
download | fengari-7807868d67aa6f24a22eff2a62964a1bafb05ac7.tar.gz fengari-7807868d67aa6f24a22eff2a62964a1bafb05ac7.tar.bz2 fengari-7807868d67aa6f24a22eff2a62964a1bafb05ac7.zip |
src/ldo.js: Don't export functions we don't need elsewhere
Diffstat (limited to 'src')
-rw-r--r-- | src/ldo.js | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -693,8 +693,6 @@ const luaD_protectedparser = function(L, z, name, mode) { return status; }; -module.exports.SParser = SParser; -module.exports.adjust_varargs = adjust_varargs; module.exports.luaD_call = luaD_call; module.exports.luaD_callnoyield = luaD_callnoyield; module.exports.luaD_checkstack = luaD_checkstack; @@ -712,6 +710,3 @@ module.exports.lua_isyieldable = lua_isyieldable; module.exports.lua_resume = lua_resume; module.exports.lua_yield = lua_yield; module.exports.lua_yieldk = lua_yieldk; -module.exports.moveresults = moveresults; -module.exports.stackerror = stackerror; -module.exports.tryfuncTM = tryfuncTM; |