LuaJIT cannot have the catchall when the safe propagation is on but LuaJIT will swallow all C++ errors if we don't at least catch std::exception ones
| 121 | // but LuaJIT will swallow all C++ errors |
| 122 | // if we don't at least catch std::exception ones |
| 123 | catch (...) { |
| 124 | call_exception_handler(L, optional<const std::exception&>(nullopt), "caught (...) exception"); |
| 125 | } |
| 126 | #endif |
| 127 | return lua_error(L); |
| 128 | #endif // Safe exceptions |
nothing calls this directly
no test coverage detected