| 597 | |
| 598 | |
| 599 | LUA_API void lua_rawgeti (lua_State *L, int idx, int n) { |
| 600 | StkId o; |
| 601 | lua_lock(L); |
| 602 | o = index2adr(L, idx); |
| 603 | api_check(L, ttistable(o)); |
| 604 | setobj2s(L, L->top, luaH_getnum(hvalue(o), n)); |
| 605 | api_incr_top(L); |
| 606 | lua_unlock(L); |
| 607 | } |
| 608 | |
| 609 | |
| 610 | LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { |
no test coverage detected