| 736 | |
| 737 | |
| 738 | LUA_API int lua_rawgeti (lua_State *L, int idx, lua_Integer n) { |
| 739 | Table *t; |
| 740 | lua_lock(L); |
| 741 | t = gettable(L, idx); |
| 742 | return finishrawget(L, luaH_getint(t, n)); |
| 743 | } |
| 744 | |
| 745 | |
| 746 | LUA_API int lua_rawgetp (lua_State *L, int idx, const void *p) { |
no test coverage detected