diff options
author | Benoit Giannangeli <giann008@gmail.com> | 2017-02-11 22:22:38 +0100 |
---|---|---|
committer | Benoit Giannangeli <giann008@gmail.com> | 2017-02-12 17:00:20 +0100 |
commit | 4bf190d1b51c8c2d3f5ab0b6355ecd971b735adc (patch) | |
tree | 2d3bb5d29f60d12db379933273d654683c539cf4 /src/lfunc.js | |
parent | 3c5cf1687c2da09f56ca1de340e5ada2119efca9 (diff) | |
download | fengari-4bf190d1b51c8c2d3f5ab0b6355ecd971b735adc.tar.gz fengari-4bf190d1b51c8c2d3f5ab0b6355ecd971b735adc.tar.bz2 fengari-4bf190d1b51c8c2d3f5ab0b6355ecd971b735adc.zip |
TFORCALL, TFORLOOP, luaD_call, tag methods
Diffstat (limited to 'src/lfunc.js')
-rw-r--r-- | src/lfunc.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lfunc.js b/src/lfunc.js index 77eb853..2e0a70a 100644 --- a/src/lfunc.js +++ b/src/lfunc.js @@ -47,7 +47,7 @@ class UpVal { return this.v !== null; } -} +}; const findupval = function(L, level) { let pp = L.openupval; @@ -73,7 +73,7 @@ const findupval = function(L, level) { // Thread with upvalue list business ? lfunc.c:75 return uv; -} +}; const luaF_close = function(L, level) { while (L.openupval !== null && L.openupval.v >= level) { |