| 653 | } |
| 654 | |
| 655 | void ContextDebugger::OnLuaError(lua_State* L, char const* msg) |
| 656 | { |
| 657 | if (breakOnError_ && !evaluatingExpression_) { |
| 658 | TriggerBreakpoint(L, BkBreakpointTriggered::EXCEPTION, msg); |
| 659 | } |
| 660 | } |
| 661 | |
| 662 | void ContextDebugger::OnGenericError(char const* msg) |
| 663 | { |
no test coverage detected