| 770 | |
| 771 | |
| 772 | LUA_API int lua_rawgeti (lua_State *L, int idx, lua_Integer n) { |
| 773 | Table *t; |
| 774 | lu_byte tag; |
| 775 | lua_lock(L); |
| 776 | t = gettable(L, idx); |
| 777 | luaH_fastgeti(t, n, s2v(L->top.p), tag); |
| 778 | return finishrawget(L, tag); |
| 779 | } |
| 780 | |
| 781 | |
| 782 | LUA_API int lua_rawgetp (lua_State *L, int idx, const void *p) { |
no test coverage detected