| 39 | } |
| 40 | |
| 41 | void Value::assumeCondition(const Token *tok) { |
| 42 | condition = tok; |
| 43 | errorPath.emplace_back(tok, "Assuming that condition '" + tok->expressionString() + "' is not redundant"); |
| 44 | } |
| 45 | |
| 46 | std::string Value::toString() const { |
| 47 | std::stringstream ss; |
no test coverage detected