| 990 | } |
| 991 | |
| 992 | void Debugger::InsertPostHook(Node * node, TuplePtrLL * tuple, bool deleted) |
| 993 | { |
| 994 | ServerThreadReentry(); |
| 995 | auto reason = deleted ? BreakpointReason::NodeDeleteTuple : BreakpointReason::NodeInsertTuple; |
| 996 | PopFrame({ reason, node, nullptr, 0, nullptr, tuple }); |
| 997 | } |
| 998 | |
| 999 | void Debugger::CallQueryPreHook(Node * node, OsiArgumentDesc * args) |
| 1000 | { |
nothing calls this directly
no outgoing calls
no test coverage detected