| 657 | } |
| 658 | |
| 659 | void Debugger::HandleBreak() { |
| 660 | // to be on the safe side, hook it again |
| 661 | UpdateHook(LUA_MASKCALL | LUA_MASKLINE | LUA_MASKRET, currentL); |
| 662 | |
| 663 | if (EmmyFacade::Get().OnBreak(shared_from_this())) { |
| 664 | EnterDebugMode(); |
| 665 | } |
| 666 | } |
| 667 | |
| 668 | // host thread |
| 669 | void Debugger::EnterDebugMode() { |
no test coverage detected