| 943 | |
| 944 | |
| 945 | LUA_API void lua_rawsetp (lua_State *L, int idx, const void *p) { |
| 946 | TValue k; |
| 947 | setpvalue(&k, cast_voidp(p)); |
| 948 | aux_rawset(L, idx, &k, 1); |
| 949 | } |
| 950 | |
| 951 | |
| 952 | LUA_API void lua_rawseti (lua_State *L, int idx, lua_Integer n) { |
nothing calls this directly
no test coverage detected