diff options
Diffstat (limited to 'lcode.h')
-rw-r--r-- | lcode.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lcode.h,v 1.64 2016/01/05 16:22:37 roberto Exp roberto $ | 2 | ** $Id: lcode.h,v 1.65 2017/04/20 19:53:55 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 | */ |
@@ -73,8 +73,10 @@ LUAI_FUNC void luaK_setoneret (FuncState *fs, expdesc *e); | |||
73 | LUAI_FUNC int luaK_jump (FuncState *fs); | 73 | LUAI_FUNC int luaK_jump (FuncState *fs); |
74 | LUAI_FUNC void luaK_ret (FuncState *fs, int first, int nret); | 74 | LUAI_FUNC void luaK_ret (FuncState *fs, int first, int nret); |
75 | LUAI_FUNC void luaK_patchlist (FuncState *fs, int list, int target); | 75 | LUAI_FUNC void luaK_patchlist (FuncState *fs, int list, int target); |
76 | void luaK_patchgoto (FuncState *fs, int list, int target, int hasclose); | ||
76 | LUAI_FUNC void luaK_patchtohere (FuncState *fs, int list); | 77 | LUAI_FUNC void luaK_patchtohere (FuncState *fs, int list); |
77 | LUAI_FUNC void luaK_patchclose (FuncState *fs, int list, int level); | 78 | LUAI_FUNC void luaK_patchclose (FuncState *fs, int list); |
79 | LUAI_FUNC int luaK_needclose (FuncState *fs, int list); | ||
78 | LUAI_FUNC void luaK_concat (FuncState *fs, int *l1, int l2); | 80 | LUAI_FUNC void luaK_concat (FuncState *fs, int *l1, int l2); |
79 | LUAI_FUNC int luaK_getlabel (FuncState *fs); | 81 | LUAI_FUNC int luaK_getlabel (FuncState *fs); |
80 | LUAI_FUNC void luaK_prefix (FuncState *fs, UnOpr op, expdesc *v, int line); | 82 | LUAI_FUNC void luaK_prefix (FuncState *fs, UnOpr op, expdesc *v, int line); |