| 565 | |
| 566 | |
| 567 | LUA_API void lua_rawgeti (lua_State *L, int idx, int n) { |
| 568 | StkId o; |
| 569 | lua_lock(L); |
| 570 | o = index2adr(L, idx); |
| 571 | api_check(L, ttistable(o)); |
| 572 | setobj2s(L, L->top, luaH_getnum(hvalue(o), n)); |
| 573 | api_incr_top(L); |
| 574 | lua_unlock(L); |
| 575 | } |
| 576 | |
| 577 | |
| 578 | LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { |
no test coverage detected