diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-03 19:16:16 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-03 19:16:16 +1000 |
commit | 735bc392056f7c55c981b68feb941bf1cc5a8ff3 (patch) | |
tree | e46733b35371b4be5fb30bb4400bb6443d09c1b3 /src/ldo.js | |
parent | 4cf090d7ede6aa3153ad912c580cfb07b1e60a9d (diff) | |
download | fengari-735bc392056f7c55c981b68feb941bf1cc5a8ff3.tar.gz fengari-735bc392056f7c55c981b68feb941bf1cc5a8ff3.tar.bz2 fengari-735bc392056f7c55c981b68feb941bf1cc5a8ff3.zip |
Pipe | has higher precedence than equals
Diffstat (limited to 'src/ldo.js')
-rw-r--r-- | src/ldo.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -77,7 +77,7 @@ const luaD_precall = function(L, off, nresults) { luaD_hook(L, defs.LUA_HOOKCALL, -1); let n = f(L); /* do the actual call */ - assert(typeof n == "number" && n >= 0 && n==n|0, "invalid return value from JS function (expected integer)"); + assert(typeof n == "number" && n >= 0 && (n|0) === n, "invalid return value from JS function (expected integer)"); assert(n < L.top - L.ci.funcOff, "not enough elements in the stack"); luaD_poscall(L, ci, L.top - n, n); |