| 2414 | |
| 2415 | |
| 2416 | LUA_API void lua_rawgeti (lua_State *L, int idx, int n) { |
| 2417 | StkId o; |
| 2418 | lua_lock(L); |
| 2419 | o = index2adr(L, idx); |
| 2420 | api_check(L, ttistable(o)); |
| 2421 | setobj2s(L, L->top, luaH_getnum(hvalue(o), n)); |
| 2422 | api_incr_top(L); |
| 2423 | lua_unlock(L); |
| 2424 | } |
| 2425 | |
| 2426 | |
| 2427 | LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { |
no test coverage detected