| 10304 | } |
| 10305 | |
| 10306 | void reset(lua_State* L_) noexcept { |
| 10307 | if (valid(L_)) { |
| 10308 | deref(L_); |
| 10309 | } |
| 10310 | ref = LUA_NOREF; |
| 10311 | } |
| 10312 | |
| 10313 | void reset(lua_State* L_, int index_) noexcept { |
| 10314 | reset(L_); |
nothing calls this directly
no test coverage detected