| 8263 | } |
| 8264 | |
| 8265 | const void* pointer(lua_State* L) const noexcept { |
| 8266 | const void* vp = lua_topointer(L, stack_index()); |
| 8267 | return vp; |
| 8268 | } |
| 8269 | |
| 8270 | type get_type(lua_State* L) const noexcept { |
| 8271 | int result = lua_type(L, index); |
nothing calls this directly
no test coverage detected