From bd96330d037660d9a1769c6c0d989f017e5f0278 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 17 Oct 2018 10:44:42 -0300 Subject: First "complete" implementation of to-be-closed variables Still missing: - handling of memory errors when creating upvalue (must run closing method all the same) - interaction with coroutines --- ltm.h | 1 + 1 file changed, 1 insertion(+) (limited to 'ltm.h') diff --git a/ltm.h b/ltm.h index 89aee78a..e8560f82 100644 --- a/ltm.h +++ b/ltm.h @@ -40,6 +40,7 @@ typedef enum { TM_LE, TM_CONCAT, TM_CALL, + TM_CLOSE, TM_N /* number of elements in the enum */ } TMS; -- cgit v1.2.3-55-g6feb