| 8142 | |
| 8143 | struct constructor_handler { |
| 8144 | int operator()(lua_State* L, int index, type expected, type actual, string_view message) const noexcept(false) { |
| 8145 | push_type_panic_string(L, index, expected, actual, message, "(type check failed in constructor)"); |
| 8146 | return lua_error(L); |
| 8147 | } |
| 8148 | }; |
| 8149 | |
| 8150 | template <typename F = void> |
nothing calls this directly
no test coverage detected