| 43 | } |
| 44 | |
| 45 | void dapiUserCommand ( const char * command ) { |
| 46 | if ( !command ) command = ""; |
| 47 | bool any = false; |
| 48 | for_each_debug_agent([&]( const DebugAgentPtr & pAgent ){ |
| 49 | if ( !any ) any = pAgent->onUserCommand(command); |
| 50 | }); |
| 51 | } |
| 52 | |
| 53 | void dapiOnBeforeGC ( Context & ctx ) { |
| 54 | for_each_debug_agent([&]( const DebugAgentPtr & pAgent ){ |
nothing calls this directly
no test coverage detected