| 906 | |
| 907 | |
| 908 | LUA_API void lua_rawsetp (lua_State *L, int idx, const void *p) { |
| 909 | TValue k; |
| 910 | setpvalue(&k, cast_voidp(p)); |
| 911 | aux_rawset(L, idx, &k, 1); |
| 912 | } |
| 913 | |
| 914 | |
| 915 | LUA_API void lua_rawseti (lua_State *L, int idx, lua_Integer n) { |
nothing calls this directly
no test coverage detected