diff options
author | Benoit Giannangeli <giann008@gmail.com> | 2017-05-05 15:53:57 +0200 |
---|---|---|
committer | Benoit Giannangeli <giann008@gmail.com> | 2017-05-05 15:53:57 +0200 |
commit | e9db75fac5f5fb4e8a211f69560151fe4415f9d4 (patch) | |
tree | d1aeddd88a88a598503c2c87e0ef8a89406a6792 | |
parent | d4aa8fa4e548ef348753ef765f2680f1a188d145 (diff) | |
download | fengari-e9db75fac5f5fb4e8a211f69560151fe4415f9d4.tar.gz fengari-e9db75fac5f5fb4e8a211f69560151fe4415f9d4.tar.bz2 fengari-e9db75fac5f5fb4e8a211f69560151fe4415f9d4.zip |
Renamed findupval to luaF_findupval
-rw-r--r-- | src/lfunc.js | 4 | ||||
-rw-r--r-- | src/lvm.js | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/lfunc.js b/src/lfunc.js index 7b2c557..d9ac4db 100644 --- a/src/lfunc.js +++ b/src/lfunc.js @@ -52,7 +52,7 @@ const luaF_newLclosure = function(L, n) { }; -const findupval = function(L, level) { +const luaF_findupval = function(L, level) { let pp = L.openupval; let p = pp; while (pp !== null && pp.v >= level) { @@ -123,7 +123,7 @@ const luaF_getlocalname = function(f, local_number, pc) { module.exports.MAXUPVAL = 255; module.exports.Proto = Proto; module.exports.UpVal = UpVal; -module.exports.findupval = findupval; +module.exports.luaF_findupval = luaF_findupval; module.exports.luaF_close = luaF_close; module.exports.luaF_getlocalname = luaF_getlocalname; module.exports.luaF_initupvals = luaF_initupvals; @@ -666,7 +666,7 @@ const luaV_execute = function(L) { for (let i = 0; i < nup; i++) { if (uv[i].instack) - ncl.upvals[i] = lfunc.findupval(L, base + uv[i].idx); + ncl.upvals[i] = lfunc.luaF_findupval(L, base + uv[i].idx); else ncl.upvals[i] = cl.upvals[uv[i].idx]; ncl.upvals[i].refcount++; |