| 820 | } |
| 821 | |
| 822 | void Debugger::ConditionalBreakpointInServerThread(Node * bpNode, uint64_t bpNodeId, BreakpointType bpType, GlobalBreakpointType globalBpType) |
| 823 | { |
| 824 | if (breakpoints_.ShouldTriggerBreakpoint(callStack_, bpNode, bpNodeId, bpType, globalBpType)) { |
| 825 | FinishedSingleStep(); |
| 826 | BreakpointInServerThread(); |
| 827 | } |
| 828 | } |
| 829 | |
| 830 | void Debugger::BreakpointInServerThread() |
| 831 | { |
nothing calls this directly
no test coverage detected