| 916 | |
| 917 | |
| 918 | LUA_API void lua_rawsetp (lua_State *L, int idx, const void *p) { |
| 919 | TValue k; |
| 920 | setpvalue(&k, cast_voidp(p)); |
| 921 | aux_rawset(L, idx, &k, 1); |
| 922 | } |
| 923 | |
| 924 | |
| 925 | LUA_API void lua_rawseti (lua_State *L, int idx, lua_Integer n) { |
nothing calls this directly
no test coverage detected