| 86 | } |
| 87 | |
| 88 | const void* pointer(lua_State* L_) const noexcept { |
| 89 | const void* pointer_id = lua_topointer(L_, stack_index()); |
| 90 | return pointer_id; |
| 91 | } |
| 92 | |
| 93 | type get_type(lua_State* L_) const noexcept { |
| 94 | int untyped_value = lua_type(L_, stack_index()); |
nothing calls this directly
no outgoing calls
no test coverage detected