| 9705 | } |
| 9706 | |
| 9707 | const void* pointer(lua_State* L_) const noexcept { |
| 9708 | const void* pointer_id = lua_topointer(L_, stack_index()); |
| 9709 | return pointer_id; |
| 9710 | } |
| 9711 | |
| 9712 | type get_type(lua_State* L_) const noexcept { |
| 9713 | int untyped_value = lua_type(L_, stack_index()); |
nothing calls this directly
no test coverage detected