aboutsummaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-10-17 10:44:42 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-10-17 10:44:42 -0300
commitbd96330d037660d9a1769c6c0d989f017e5f0278 (patch)
treec3f4580c628a71f512b057b7f52987153cb88d74 /ltm.h
parent4cd1f4aac01184765818e0cebf02da454ccf6590 (diff)
downloadlua-bd96330d037660d9a1769c6c0d989f017e5f0278.tar.gz
lua-bd96330d037660d9a1769c6c0d989f017e5f0278.tar.bz2
lua-bd96330d037660d9a1769c6c0d989f017e5f0278.zip
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
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ltm.h b/ltm.h
index 89aee78a..e8560f82 100644
--- a/ltm.h
+++ b/ltm.h
@@ -40,6 +40,7 @@ typedef enum {
40 TM_LE, 40 TM_LE,
41 TM_CONCAT, 41 TM_CONCAT,
42 TM_CALL, 42 TM_CALL,
43 TM_CLOSE,
43 TM_N /* number of elements in the enum */ 44 TM_N /* number of elements in the enum */
44} TMS; 45} TMS;
45 46