| 5101 | struct SymbolicConditionHandler : SimpleConditionHandler { |
| 5102 | |
| 5103 | static bool isNegatedBool(const Token* tok) |
| 5104 | { |
| 5105 | if (!Token::simpleMatch(tok, "!")) |
| 5106 | return false; |
| 5107 | return (astIsBool(tok->astOperand1())); |
| 5108 | } |
| 5109 | |
| 5110 | static const Token* skipNot(const Token* tok) |
| 5111 | { |
nothing calls this directly
no test coverage detected