| 701 | |
| 702 | |
| 703 | LUA_API int lua_rawgeti (lua_State *L, int idx, lua_Integer n) { |
| 704 | Table *t; |
| 705 | lua_lock(L); |
| 706 | t = gettable(L, idx); |
| 707 | return finishrawget(L, luaH_getint(t, n)); |
| 708 | } |
| 709 | |
| 710 | |
| 711 | LUA_API int lua_rawgetp (lua_State *L, int idx, const void *p) { |
no test coverage detected