aboutsummaryrefslogtreecommitdiff
path: root/src/lfunc.js
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-05-05 14:19:17 +1000
committerdaurnimator <quae@daurnimator.com>2017-05-05 14:21:43 +1000
commit7de17e1f67ec8da30d19450f6de05c8b5ad6e10e (patch)
tree84fbb4772172d5646405df4d2ae91ad7c32eeeaf /src/lfunc.js
parentb0cdb074dcd474893c31783230127e795e676e58 (diff)
downloadfengari-7de17e1f67ec8da30d19450f6de05c8b5ad6e10e.tar.gz
fengari-7de17e1f67ec8da30d19450f6de05c8b5ad6e10e.tar.bz2
fengari-7de17e1f67ec8da30d19450f6de05c8b5ad6e10e.zip
Remove .twups field
It's used to track threads that should be traversed by the GC to find upvalues
Diffstat (limited to 'src/lfunc.js')
-rw-r--r--src/lfunc.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lfunc.js b/src/lfunc.js
index 69c7581..e038cc0 100644
--- a/src/lfunc.js
+++ b/src/lfunc.js
@@ -82,8 +82,6 @@ const findupval = function(L, level) {
uv.v = level;
- // Thread with upvalue list business ? lfunc.c:75
-
return uv;
};