diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-08 12:32:08 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-08 15:31:29 +1000 |
commit | 2977fe002407b6f86efa4ba5216f567082f33e45 (patch) | |
tree | da7e0127cd26534d01655e7b6a5c8732fb4920a0 /src/lstate.js | |
parent | 8c8585a0bba0e05b6382f2f4f063515b5988639c (diff) | |
download | fengari-2977fe002407b6f86efa4ba5216f567082f33e45.tar.gz fengari-2977fe002407b6f86efa4ba5216f567082f33e45.tar.bz2 fengari-2977fe002407b6f86efa4ba5216f567082f33e45.zip |
Move string functions to centralised lstring.js
Diffstat (limited to 'src/lstate.js')
-rw-r--r-- | src/lstate.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/lstate.js b/src/lstate.js index fee308c..f2e17cd 100644 --- a/src/lstate.js +++ b/src/lstate.js @@ -71,18 +71,6 @@ class global_State { this.mt = new Array(LUA_NUMTAGS); } - intern(stringArray) { - // TODO: when weak value maps are available - // let key = stringArray.map(e => `${e}|`).join(''); - - // if (!this.strt.has(key)) - // this.strt.set(key, new lobject.TValue(CT.LUA_TLNGSTR, stringArray)); - - // return this.strt.get(key); - - return new lobject.TValue(CT.LUA_TLNGSTR, stringArray); - } - } |