| 761 | } |
| 762 | |
| 763 | void collectDebugAgentState ( Context & ctx, const LineInfo & at ) { |
| 764 | for_each_debug_agent([&](const DebugAgentPtr & pAgent){ |
| 765 | pAgent->onCollect( &ctx, at ); |
| 766 | }); |
| 767 | } |
| 768 | |
| 769 | void onBreakpointsReset ( const char * file, int breakpointsNum ) { |
| 770 | for_each_debug_agent([&](const DebugAgentPtr & pAgent){ |
nothing calls this directly
no test coverage detected