| 471 | } |
| 472 | |
| 473 | void Context::announceCreation() { |
| 474 | for_each_debug_agent([&](const DebugAgentPtr & pAgent){ |
| 475 | pAgent->onCreateContext(this); |
| 476 | }); |
| 477 | } |
| 478 | |
| 479 | char * Context::intern( const char * str ) { |
| 480 | if ( !str ) return nullptr; |
no test coverage detected