diff options
author | daurnimator <quae@daurnimator.com> | 2017-12-13 14:56:26 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-12-13 15:31:07 +1100 |
commit | 17e4cff6514c75920462397c227408c21336d1ae (patch) | |
tree | 2a3768d78a30f77adbc52231ac61909e64794a48 /src/lundump.js | |
parent | 11a2421acaf2b39d19ee99933102c35e28fd13f8 (diff) | |
download | fengari-17e4cff6514c75920462397c227408c21336d1ae.tar.gz fengari-17e4cff6514c75920462397c227408c21336d1ae.tar.bz2 fengari-17e4cff6514c75920462397c227408c21336d1ae.zip |
src/: Use .subarray instead of .slice (optimisation)
Diffstat (limited to 'src/lundump.js')
-rw-r--r-- | src/lundump.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lundump.js b/src/lundump.js index 7461813..e49c376 100644 --- a/src/lundump.js +++ b/src/lundump.js @@ -25,7 +25,7 @@ class BytecodeParser { assert(defs.is_luastring(name)); if (name[0] == defs.char["@"] || name[0] == defs.char["="]) - this.name = name.slice(1); + this.name = name.subarray(1); else if (name[0] == defs.LUA_SIGNATURE.charCodeAt(0)) this.name = defs.to_luastring("binary string", true); else |