| 14485 | } |
| 14486 | } |
| 14487 | void TestSpecParser::processNameChar( char c ) { |
| 14488 | if( c == '[' ) { |
| 14489 | if( m_substring == "exclude:" ) |
| 14490 | m_exclusion = true; |
| 14491 | else |
| 14492 | endMode(); |
| 14493 | startNewMode( Tag ); |
| 14494 | } |
| 14495 | } |
| 14496 | bool TestSpecParser::processOtherChar( char c ) { |
| 14497 | if( !isControlChar( c ) ) |
| 14498 | return false; |
nothing calls this directly
no outgoing calls
no test coverage detected