| 8732 | } |
| 8733 | |
| 8734 | const void* pointer(lua_State* L) const noexcept { |
| 8735 | int si = push(L); |
| 8736 | const void* vp = lua_topointer(L, -si); |
| 8737 | lua_pop(L, si); |
| 8738 | return vp; |
| 8739 | } |
| 8740 | |
| 8741 | type get_type(lua_State* L) const noexcept { |
| 8742 | int p = push(L); |
nothing calls this directly
no test coverage detected