| 25048 | } |
| 25049 | |
| 25050 | inline protected_function_result script_default_on_error(lua_State* L, protected_function_result pfr) { |
| 25051 | #if SOL_IS_ON(SOL_DEFAULT_PASS_ON_ERROR_I_) |
| 25052 | return script_pass_on_error(L, std::move(pfr)); |
| 25053 | #else |
| 25054 | return script_throw_on_error(L, std::move(pfr)); |
| 25055 | #endif |
| 25056 | } |
| 25057 | |
| 25058 | namespace stack { |
| 25059 | inline error get_traceback_or_errors(lua_State* L) { |
nothing calls this directly
no test coverage detected