summaryrefslogtreecommitdiff
path: root/src/lstate.js
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-04-27 17:58:58 +1000
committerBenoit Giannangeli <giann008@gmail.com>2017-04-28 14:15:58 +0200
commit58bd4012506e6dfc92dd819d4e43acad18e8b914 (patch)
tree1db44a36cdd61d8629e3485a80fe9a57997e04b8 /src/lstate.js
parent18fde8bd2285ad45baa9f9b2f16b40fb6bd3b2dd (diff)
downloadfengari-58bd4012506e6dfc92dd819d4e43acad18e8b914.tar.gz
fengari-58bd4012506e6dfc92dd819d4e43acad18e8b914.tar.bz2
fengari-58bd4012506e6dfc92dd819d4e43acad18e8b914.zip
lua_State shouldn't subclass TValue
Diffstat (limited to 'src/lstate.js')
-rw-r--r--src/lstate.js7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/lstate.js b/src/lstate.js
index 1a4cbd5..349c723 100644
--- a/src/lstate.js
+++ b/src/lstate.js
@@ -41,10 +41,9 @@ class CallInfo {
}
-class lua_State extends lobject.TValue {
+class lua_State {
constructor() {
- super(CT.LUA_TTHREAD, null);
this.base_ci = new CallInfo(); // Will be populated later
this.top = 0;
this.ci = null;
@@ -57,8 +56,6 @@ class lua_State extends lobject.TValue {
this.errorJmp = null;
this.nny = 1;
this.errfunc = 0;
-
- this.value = this;
}
}
@@ -147,7 +144,7 @@ const preinit_thread = function(L, g) {
const lua_newthread = function(L) {
let g = L.l_G;
let L1 = new lua_State();
- L.stack[L.top++] = L1;
+ L.stack[L.top++] = new lobject.TValue(CT.LUA_TTHREAD, L1);
assert(L.top <= L.ci.top, "stack overflow");
preinit_thread(L1, g);
L1.hookmask = L.hookmask;