cppcheck-suppress unusedFunction // used in test
| 1737 | |
| 1738 | // cppcheck-suppress unusedFunction // used in test |
| 1739 | std::string Token::astStringZ3() const |
| 1740 | { |
| 1741 | if (!astOperand1()) |
| 1742 | return str(); |
| 1743 | if (!astOperand2()) |
| 1744 | return "(" + str() + " " + astOperand1()->astStringZ3() + ")"; |
| 1745 | return "(" + str() + " " + astOperand1()->astStringZ3() + " " + astOperand2()->astStringZ3() + ")"; |
| 1746 | } |
| 1747 | |
| 1748 | void Token::printValueFlow(const std::vector<std::string>& files, bool xml, std::ostream &out) const |
| 1749 | { |