| 1017 | } |
| 1018 | |
| 1019 | bool isConditional() const override { |
| 1020 | for (auto&& p:values) { |
| 1021 | if (p.second.conditional) |
| 1022 | return true; |
| 1023 | if (p.second.condition) |
| 1024 | return !p.second.isImpossible(); |
| 1025 | } |
| 1026 | return false; |
| 1027 | } |
| 1028 | |
| 1029 | bool stopOnCondition(const Token* condTok) const override { |
| 1030 | if (isConditional()) |
no test coverage detected