| 219 | } |
| 220 | |
| 221 | GCtab *lj_lib_checktab(lua_State *L, int narg) |
| 222 | { |
| 223 | TValue *o = L->base + narg-1; |
| 224 | if (!(o < L->top && tvistab(o))) |
| 225 | lj_err_argt(L, narg, LUA_TTABLE); |
| 226 | return tabV(o); |
| 227 | } |
| 228 | |
| 229 | GCtab *lj_lib_checktabornil(lua_State *L, int narg) |
| 230 | { |
no test coverage detected