diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-03-07 12:55:38 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-03-07 12:55:38 -0300 |
commit | 4a1612ff9b968fe446bc4dd20460bfaccabeb3b3 (patch) | |
tree | aef8f8c476e0814c357ead6248a614fb0ca07eac /lcode.h | |
parent | 464658b16a1a539fd590e1696bfcfb572a77fe13 (diff) | |
download | lua-4a1612ff9b968fe446bc4dd20460bfaccabeb3b3.tar.gz lua-4a1612ff9b968fe446bc4dd20460bfaccabeb3b3.tar.bz2 lua-4a1612ff9b968fe446bc4dd20460bfaccabeb3b3.zip |
new experimental syntax using reserved word 'undef'
Diffstat (limited to 'lcode.h')
-rw-r--r-- | lcode.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lcode.h,v 1.69 2017/11/30 13:29:18 roberto Exp roberto $ | 2 | ** $Id: lcode.h,v 1.70 2017/12/18 15:44:44 roberto Exp roberto $ |
3 | ** Code generator for Lua | 3 | ** Code generator for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -89,6 +89,8 @@ LUAI_FUNC void luaK_posfix (FuncState *fs, BinOpr op, expdesc *v1, | |||
89 | expdesc *v2, int line); | 89 | expdesc *v2, int line); |
90 | LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore); | 90 | LUAI_FUNC void luaK_setlist (FuncState *fs, int base, int nelems, int tostore); |
91 | LUAI_FUNC void luaK_finish (FuncState *fs); | 91 | LUAI_FUNC void luaK_finish (FuncState *fs); |
92 | LUAI_FUNC void luaK_codeundef (FuncState *fs, expdesc *e); | ||
93 | LUAI_FUNC l_noret luaK_semerror (LexState *ls, const char *msg); | ||
92 | 94 | ||
93 | 95 | ||
94 | #endif | 96 | #endif |