aboutsummaryrefslogtreecommitdiff
path: root/src/lj_errmsg.h
diff options
context:
space:
mode:
authorMike Pall <mike>2010-02-08 05:26:52 +0100
committerMike Pall <mike>2010-02-08 05:26:52 +0100
commit60b5af44222fff87a7184365a7f49654032d4cbf (patch)
tree9c108bc330f16ef8914c3bea84b5170000788932 /src/lj_errmsg.h
parent1307f49137f328b0880c736644755428d84be0ba (diff)
downloadluajit-60b5af44222fff87a7184365a7f49654032d4cbf.tar.gz
luajit-60b5af44222fff87a7184365a7f49654032d4cbf.tar.bz2
luajit-60b5af44222fff87a7184365a7f49654032d4cbf.zip
Redesign of prototype generation, part 1: varinfo and uvname.
Use a growable, per-chunk variable stack. Collect varinfo/uvname for prototype at the end.
Diffstat (limited to 'src/lj_errmsg.h')
-rw-r--r--src/lj_errmsg.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_errmsg.h b/src/lj_errmsg.h
index 826366a6..0a2d9dd7 100644
--- a/src/lj_errmsg.h
+++ b/src/lj_errmsg.h
@@ -118,6 +118,7 @@ ERRDEF(XBCLOAD, "cannot load Lua bytecode")
118ERRDEF(XTOKEN, LUA_QS " expected") 118ERRDEF(XTOKEN, LUA_QS " expected")
119ERRDEF(XJUMP, "control structure too long") 119ERRDEF(XJUMP, "control structure too long")
120ERRDEF(XSLOTS, "function or expression too complex") 120ERRDEF(XSLOTS, "function or expression too complex")
121ERRDEF(XLIMC, "chunk has more than %d local variables")
121ERRDEF(XLIMM, "main function has more than %d %s") 122ERRDEF(XLIMM, "main function has more than %d %s")
122ERRDEF(XLIMF, "function at line %d has more than %d %s") 123ERRDEF(XLIMF, "function at line %d has more than %d %s")
123ERRDEF(XMATCH, LUA_QS " expected (to close " LUA_QS " at line %d)") 124ERRDEF(XMATCH, LUA_QS " expected (to close " LUA_QS " at line %d)")