From 976ddcc997f1bc299c2e1e2b23b4ff79e7bbfcb3 Mon Sep 17 00:00:00 2001 From: Benoit Giannangeli Date: Thu, 3 Aug 2017 12:08:10 +0200 Subject: Fixed correct let declaration that will fail babili --- src/lvm.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/lvm.js b/src/lvm.js index 013b192..f974693 100644 --- a/src/lvm.js +++ b/src/lvm.js @@ -646,18 +646,20 @@ const luaV_lessthan = function(L, l, r) { }; const luaV_lessequal = function(L, l, r) { + let res; + if (l.ttisnumber() && r.ttisnumber()) return LEnum(l, r) ? 1 : 0; else if (l.ttisstring() && r.ttisstring()) return l_strcmp(l.tsvalue(), r.tsvalue()) <= 0 ? 1 : 0; else { - let res = ltm.luaT_callorderTM(L, l, r, ltm.TMS.TM_LE); + res = ltm.luaT_callorderTM(L, l, r, ltm.TMS.TM_LE); if (res !== null) return res ? 1 : 0; } /* try 'lt': */ L.ci.callstatus |= lstate.CIST_LEQ; /* mark it is doing 'lt' for 'le' */ - let res = ltm.luaT_callorderTM(L, r, l, ltm.TMS.TM_LT); + res = ltm.luaT_callorderTM(L, r, l, ltm.TMS.TM_LT); L.ci.callstatus ^= lstate.CIST_LEQ; /* clear mark */ if (res === null) ldebug.luaG_ordererror(L, l, r); -- cgit v1.2.3-54-g00ecf