| 742 | |
| 743 | |
| 744 | LUA_API int lua_rawgeti (lua_State *L, int idx, lua_Integer n) { |
| 745 | Table *t; |
| 746 | lua_lock(L); |
| 747 | t = gettable(L, idx); |
| 748 | return finishrawget(L, luaH_getint(t, n)); |
| 749 | } |
| 750 | |
| 751 | |
| 752 | LUA_API int lua_rawgetp (lua_State *L, int idx, const void *p) { |
no test coverage detected