|
| CClosure * | luaF_newCclosure (lua_State *L, int nupvals) |
| |
| LClosure * | luaF_newLclosure (lua_State *L, int nupvals) |
| |
| void | luaF_initupvals (lua_State *L, LClosure *cl) |
| |
| UpVal * | luaF_findupval (lua_State *L, StkId level) |
| |
| void | luaF_newtbcupval (lua_State *L, StkId level) |
| |
| void | luaF_unlinkupval (UpVal *uv) |
| |
| int | luaF_close (lua_State *L, StkId level, int status) |
| |
| Proto * | luaF_newproto (lua_State *L) |
| |
| void | luaF_freeproto (lua_State *L, Proto *f) |
| |
| const char * | luaF_getlocalname (const Proto *f, int local_number, int pc) |
| |