diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-03 17:21:10 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-03 17:21:10 +1000 |
commit | 7895336f4c2aa80abc807493891f11174fd1690c (patch) | |
tree | 1af7a251ec148f684a1fcb6689192f0b5b91f5dd /src | |
parent | 8def0e7becd1d9a78f607bd06c71b3472dac43b1 (diff) | |
download | fengari-7895336f4c2aa80abc807493891f11174fd1690c.tar.gz fengari-7895336f4c2aa80abc807493891f11174fd1690c.tar.bz2 fengari-7895336f4c2aa80abc807493891f11174fd1690c.zip |
src/lapi.js: Remove now unused lua_compare_ function
Diffstat (limited to 'src')
-rw-r--r-- | src/lapi.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lapi.js b/src/lapi.js index 7123628..862917d 100644 --- a/src/lapi.js +++ b/src/lapi.js @@ -706,10 +706,6 @@ const lua_compare = function(L, index1, index2, op) { let o1 = index2addr(L, index1); let o2 = index2addr(L, index2); - return lua_compare_(L, o1, o2, op); -}; - -const lua_compare_ = function(L, o1, o2, op) { let i = 0; if (isvalid(o1) && isvalid(o2)) { @@ -1023,7 +1019,6 @@ module.exports.lua_call = lua_call; module.exports.lua_callk = lua_callk; module.exports.lua_checkstack = lua_checkstack; module.exports.lua_compare = lua_compare; -module.exports.lua_compare_ = lua_compare_; module.exports.lua_concat = lua_concat; module.exports.lua_copy = lua_copy; module.exports.lua_createtable = lua_createtable; |