| 10324 | } |
| 10325 | |
| 10326 | const void* pointer(lua_State* L_) const noexcept { |
| 10327 | int si = push(L_); |
| 10328 | const void* vp = lua_topointer(L_, -si); |
| 10329 | lua_pop(L_, si); |
| 10330 | return vp; |
| 10331 | } |
| 10332 | |
| 10333 | type get_type(lua_State* L_) const noexcept { |
| 10334 | int p = push(L_); |
nothing calls this directly
no test coverage detected