| 1228 | |
| 1229 | public: |
| 1230 | BinaryExpr(bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs) |
| 1231 | : ITransientExpression{true, comparisonResult}, m_lhs(lhs), m_op(op), m_rhs(rhs) { |
| 1232 | } |
| 1233 | }; |
| 1234 | |
| 1235 | template <typename LhsT> class UnaryExpr : public ITransientExpression { |
nothing calls this directly
no outgoing calls
no test coverage detected