| 51 | } |
| 52 | |
| 53 | void dapiOnBeforeGC ( Context & ctx ) { |
| 54 | for_each_debug_agent([&]( const DebugAgentPtr & pAgent ){ |
| 55 | pAgent->onBeforeGC(&ctx); |
| 56 | }); |
| 57 | } |
| 58 | |
| 59 | void dapiOnAfterGC ( Context & ctx ) { |
| 60 | for_each_debug_agent([&]( const DebugAgentPtr & pAgent ){ |
no test coverage detected