| 893 | } |
| 894 | |
| 895 | void Debugger::CallQueryPostHook(Node * node, OsiArgumentDesc * args, bool succeeded) |
| 896 | { |
| 897 | ServerThreadReentry(); |
| 898 | // No breakpoint allowed on CallQuery |
| 899 | |
| 900 | lastQueryResults_.results.clear(); |
| 901 | while (args) { |
| 902 | lastQueryResults_.results.push_back(args->Value); |
| 903 | args = args->NextParam; |
| 904 | } |
| 905 | } |
| 906 | |
| 907 | void Debugger::RuleActionPreHook(RuleActionNode * action) |
| 908 | { |
no test coverage detected