| 560 | } |
| 561 | |
| 562 | void Debugger::Evaluate(uint32_t seq, EvalType type, uint32_t nodeId, MsgTuple const & params, |
| 563 | std::function<void(ResultCode, bool)> completionCallback) |
| 564 | { |
| 565 | pendingActions_.push([=]() { |
| 566 | bool querySucceeded = false; |
| 567 | auto rc = this->EvaluateInServerThread(seq, type, nodeId, params, querySucceeded); |
| 568 | completionCallback(rc, querySucceeded); |
| 569 | }); |
| 570 | breakpointCv_.notify_one(); |
| 571 | } |
| 572 | |
| 573 | void MsgToValue(MsgTypedValue const & msg, TypedValue & tv, void * tvVmt) |
| 574 | { |
no test coverage detected