diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-03 12:29:35 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-03 12:29:35 +1000 |
commit | ebeb17ee158a3b482bd70c8643eacd166d89b4b5 (patch) | |
tree | b3aaa38420d919897164e38ff532adbef6ee3556 /src/lapi.js | |
parent | cb0295e52870f22c5dd1a1726342b8d4b147b1c5 (diff) | |
download | fengari-ebeb17ee158a3b482bd70c8643eacd166d89b4b5.tar.gz fengari-ebeb17ee158a3b482bd70c8643eacd166d89b4b5.tar.bz2 fengari-ebeb17ee158a3b482bd70c8643eacd166d89b4b5.zip |
Add lua_rawseti
Diffstat (limited to 'src/lapi.js')
-rw-r--r-- | src/lapi.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lapi.js b/src/lapi.js index 4de27c2..826dee2 100644 --- a/src/lapi.js +++ b/src/lapi.js @@ -399,6 +399,14 @@ const lua_rawset = function(L, idx) { L.top -= 2; }; +const lua_rawseti = function(L, idx, n) { + assert(2 < L.top - L.ci.funcOff, "not enough elements in the stack"); + let o = index2addr(L, idx); + assert(o.ttistable(), "table expected"); + ltable.luaH_setint(o.value, n, L.stack[L.top - 1]); + L.stack[--L.top] = void 0; +}; + const lua_rawsetp = function(L, idx, p) { assert(1 < L.top - L.ci.funcOff, "not enough elements in the stack"); let o = index2addr(L, idx); @@ -1074,6 +1082,7 @@ module.exports.lua_rawgeti = lua_rawgeti; module.exports.lua_rawgetp = lua_rawgetp; module.exports.lua_rawlen = lua_rawlen; module.exports.lua_rawset = lua_rawset; +module.exports.lua_rawseti = lua_rawseti; module.exports.lua_rawsetp = lua_rawsetp; module.exports.lua_remove = lua_remove; module.exports.lua_replace = lua_replace; |