aboutsummaryrefslogtreecommitdiff
path: root/src/lstring.js
diff options
context:
space:
mode:
authorBenoit Giannangeli <giann@users.noreply.github.com>2017-05-23 07:58:09 +0200
committerGitHub <noreply@github.com>2017-05-23 07:58:09 +0200
commit412b24a06c681a03ab1c1f84e00142cab40bf602 (patch)
treea8be2dfdf82a0b5a02da52cb08175c2b1f3698b9 /src/lstring.js
parentb2fb7a9302693fe5e164469eedb802b54e460347 (diff)
parentbeb5d0abd707c112953719a8ac077dff88a5ecf7 (diff)
downloadfengari-412b24a06c681a03ab1c1f84e00142cab40bf602.tar.gz
fengari-412b24a06c681a03ab1c1f84e00142cab40bf602.tar.bz2
fengari-412b24a06c681a03ab1c1f84e00142cab40bf602.zip
Merge pull request #64 from daurnimator/lightuserdata-keys
Fix collisions with lightuserdata table keys
Diffstat (limited to 'src/lstring.js')
-rw-r--r--src/lstring.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lstring.js b/src/lstring.js
index 1887e85..a5ee669 100644
--- a/src/lstring.js
+++ b/src/lstring.js
@@ -27,7 +27,8 @@ const luaS_eqlngstr = function(a, b) {
return a == b || (a.realstring.length == b.realstring.length && a.realstring.join() == b.realstring.join());
};
-/* converts strings (arrays) to a consistent map key */
+/* converts strings (arrays) to a consistent map key
+ make sure this doesn't conflict with any of the anti-collision strategies in ltable */
const luaS_hash = function(str) {
assert(Array.isArray(str));
return str.map(e => `${e}|`).join('');