| 477 | } |
| 478 | |
| 479 | char * Context::intern( const char * str ) { |
| 480 | if ( !str ) return nullptr; |
| 481 | uint32_t len = uint32_t(strlen(str)); |
| 482 | return intern(str, len); |
| 483 | } |
| 484 | |
| 485 | char * Context::intern ( const char * str, uint32_t len ) { |
| 486 | if ( !str || !len ) return nullptr; |
nothing calls this directly
no test coverage detected