diff options
author | daurnimator <quae@daurnimator.com> | 2017-04-26 18:55:22 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-04-26 18:55:22 +1000 |
commit | e9472c358593e359cba1ae7a5731a054683c564e (patch) | |
tree | 184502a123ef933b363768f1fe7f62e6301c16b0 /src/lutf8lib.js | |
parent | 6db7eebe7211f1aacdf27971c7c4f3423a04fd34 (diff) | |
download | fengari-e9472c358593e359cba1ae7a5731a054683c564e.tar.gz fengari-e9472c358593e359cba1ae7a5731a054683c564e.tar.bz2 fengari-e9472c358593e359cba1ae7a5731a054683c564e.zip |
Remove pointless use internal string implementation
Diffstat (limited to 'src/lutf8lib.js')
-rw-r--r-- | src/lutf8lib.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lutf8lib.js b/src/lutf8lib.js index a35de63..e78b8e8 100644 --- a/src/lutf8lib.js +++ b/src/lutf8lib.js @@ -1,7 +1,6 @@ "use strict"; const lua = require('./lua.js'); -const lapi = require('./lapi.js'); const lauxlib = require('./lauxlib.js'); const llimit = require('./llimit.js'); @@ -60,7 +59,6 @@ const utf8_decode = function(s, val) { const utflen = function(L) { let n = 0; let s = lauxlib.luaL_checkstring(L, 1); - s = L.stack[lapi.index2addr_(L, 1)].value; let len = s.length; let posi = u_posrelat(lauxlib.luaL_optinteger(L, 2, 1), len); let posj = u_posrelat(lauxlib.luaL_optinteger(L, 3, -1), len); @@ -115,7 +113,6 @@ const utfchar = function(L) { */ const byteoffset = function(L) { let s = lauxlib.luaL_checkstring(L, 1); - s = L.stack[lapi.index2addr_(L, 1)].value; let n = lauxlib.luaL_checkinteger(L, 2); let posi = n >= 0 ? 1 : s.length + 1; posi = u_posrelat(lauxlib.luaL_optinteger(L, 3, posi), s.length); @@ -161,7 +158,6 @@ const byteoffset = function(L) { */ const codepoint = function(L) { let s = lauxlib.luaL_checkstring(L, 1); - s = L.stack[lapi.index2addr_(L, 1)].value; let posi = u_posrelat(lauxlib.luaL_optinteger(L, 2, 1), s.length); let pose = u_posrelat(lauxlib.luaL_optinteger(L, 3, posi), s.length); @@ -188,7 +184,6 @@ const codepoint = function(L) { const iter_aux = function(L) { let s = lauxlib.luaL_checkstring(L, 1); - s = L.stack[lapi.index2addr_(L, 1)].value; let len = s.length; let n = lua.lua_tointeger(L, 2) - 1; |