diff options
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 3d7233c..9162501 100644 --- a/src/lundump.js +++ b/src/lundump.js @@ -282,7 +282,7 @@ class BytecodeParser { let cl = new lobject.LClosure(this.L, this.readByte()); - this.L.stack[this.L.top] = cl; + this.L.stack[this.L.top] = new lobject.TValue(defs.CT.LUA_TLCL, cl); this.L.top++; cl.p = new Proto(); |