aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-05-12 15:25:49 +1000
committerdaurnimator <quae@daurnimator.com>2017-05-12 16:54:59 +1000
commit6e0acf1e915dc1c12363884874ab5d3c596ca486 (patch)
treeff224dfd99c5486ecc7c06892a1c9180385a8947 /src
parent043d0eede8dc8e19ae62b8426c6e0709e39df945 (diff)
downloadfengari-6e0acf1e915dc1c12363884874ab5d3c596ca486.tar.gz
fengari-6e0acf1e915dc1c12363884874ab5d3c596ca486.tar.bz2
fengari-6e0acf1e915dc1c12363884874ab5d3c596ca486.zip
src/{ldo,lvm}.js: Copy style from lua C code
Diffstat (limited to 'src')
-rw-r--r--src/ldo.js3
-rw-r--r--src/lvm.js6
2 files changed, 3 insertions, 6 deletions
diff --git a/src/ldo.js b/src/ldo.js
index 57400ab..f7a8d8f 100644
--- a/src/ldo.js
+++ b/src/ldo.js
@@ -89,8 +89,7 @@ const luaD_precall = function(L, off, nresults) {
ci.nresults = nresults;
ci.func = func;
ci.l_base = base;
- ci.top = base + fsize;
- L.top = ci.top;
+ L.top = ci.top = base + fsize;
ci.l_savedpc = p.code;
ci.pcOff = 0;
ci.callstatus = lstate.CIST_LUA;
diff --git a/src/lvm.js b/src/lvm.js
index 7483738..fb32c91 100644
--- a/src/lvm.js
+++ b/src/lvm.js
@@ -489,14 +489,12 @@ const luaV_execute = function(L) {
L.stack[ofuncOff + aux] = L.stack[nfuncOff + aux];
oci.func = nci.func;
oci.l_base = ofuncOff + (nci.l_base - nfuncOff);
- L.top = ofuncOff + (L.top - nfuncOff);
- oci.top = L.top;
+ oci.top = L.top = ofuncOff + (L.top - nfuncOff);
oci.l_savedpc = nci.l_savedpc;
oci.pcOff = nci.pcOff;
oci.callstatus |= lstate.CIST_TAIL;
oci.next = null;
- L.ci = oci;
- ci = L.ci;
+ ci = L.ci = oci;
L.ciOff--;
assert(L.top === oci.l_base + L.stack[ofuncOff].value.p.maxstacksize);