| 385 | } |
| 386 | |
| 387 | void Debugger::StoryLoaded() |
| 388 | { |
| 389 | ServerThreadReentry(); |
| 390 | isInitialized_ = false; |
| 391 | actionMappings_.UpdateRuleActionMappings(); |
| 392 | debugAdapters_.UpdateAdapters(); |
| 393 | if (!debugAdapters_.HasAllAdapters()) { |
| 394 | Debug("Debugger::StoryLoaded(): Not all debug adapters are available - some debug calls will not work!"); |
| 395 | } |
| 396 | |
| 397 | messageHandler_.SendStoryLoaded(); |
| 398 | if (breakpoints_.ShouldTriggerGlobalBreakpoint(GlobalBreakpointType::GlobalBreakOnStoryLoaded)) { |
| 399 | GlobalBreakpointInServerThread(GlobalBreakpointReason::StoryLoaded); |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | void Debugger::MergeStarted() |
| 404 | { |
no test coverage detected