aboutsummaryrefslogtreecommitdiff
path: root/src/lstate.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/lstate.js')
-rw-r--r--src/lstate.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lstate.js b/src/lstate.js
index ef84e07..b919f0e 100644
--- a/src/lstate.js
+++ b/src/lstate.js
@@ -1,6 +1,7 @@
/*jshint esversion: 6 */
"use strict";
+const LUA_MULTRET = require('./lua.js').LUA_MULTRET;
class CallInfo {
@@ -28,6 +29,7 @@ class lua_State {
this.top = 1;
this.ci = new CallInfo(0, cl, 1, 1, null, null);
this.ci.u.l.savedpc = cl.p.code;
+ this.ci.nresults = LUA_MULTRET;
this.ciOff = 0;
this.stack = [
cl