| 710 | } |
| 711 | |
| 712 | void Debugger::ConditionalBreakpointInServerThread(Node * bpNode, uint64_t bpNodeId, BreakpointType bpType, GlobalBreakpointType globalBpType) |
| 713 | { |
| 714 | if (breakpoints_.ShouldTriggerBreakpoint(callStack_, bpNode, bpNodeId, bpType, globalBpType)) { |
| 715 | FinishedSingleStep(); |
| 716 | BreakpointInServerThread(); |
| 717 | } |
| 718 | } |
| 719 | |
| 720 | void Debugger::BreakpointInServerThread() |
| 721 | { |
nothing calls this directly
no test coverage detected