From 4bf190d1b51c8c2d3f5ab0b6355ecd971b735adc Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Sat, 11 Feb 2017 22:22:38 +0100 Subject: TFORCALL, TFORLOOP, luaD_call, tag methods --- src/lfunc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lfunc.js') 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) { -- cgit v1.2.3-54-g00ecf