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