diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-02-16 16:09:52 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-02-16 16:09:52 -0300 |
commit | 2aaf7394ad17180565423ce360d5faffb60f4e4f (patch) | |
tree | 32caa2d7b0079b4bc9b0ac392d216c5094a6433d /ltm.c | |
parent | b3ce4505296253e6da1fa780c23e7ed012efc88e (diff) | |
download | lua-2aaf7394ad17180565423ce360d5faffb60f4e4f.tar.gz lua-2aaf7394ad17180565423ce360d5faffb60f4e4f.tar.bz2 lua-2aaf7394ad17180565423ce360d5faffb60f4e4f.zip |
more and better tools (assertions & inspectors) to check incremental GC
Diffstat (limited to 'ltm.c')
-rw-r--r-- | ltm.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltm.c,v 1.107 2003/12/01 18:22:56 roberto Exp roberto $ | 2 | ** $Id: ltm.c,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $ |
3 | ** Tag methods | 3 | ** Tag methods |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -21,7 +21,8 @@ | |||
21 | 21 | ||
22 | const char *const luaT_typenames[] = { | 22 | const char *const luaT_typenames[] = { |
23 | "nil", "boolean", "userdata", "number", | 23 | "nil", "boolean", "userdata", "number", |
24 | "string", "table", "function", "userdata", "thread" | 24 | "string", "table", "function", "userdata", "thread", |
25 | "proto", "upval" | ||
25 | }; | 26 | }; |
26 | 27 | ||
27 | 28 | ||