| 2227 | RhsT m_rhs; |
| 2228 | |
| 2229 | void streamReconstructedExpression( std::ostream &os ) const override { |
| 2230 | formatReconstructedExpression |
| 2231 | ( os, Catch::Detail::stringify( m_lhs ), m_op, Catch::Detail::stringify( m_rhs ) ); |
| 2232 | } |
| 2233 | |
| 2234 | public: |
| 2235 | BinaryExpr( bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs ) |
nothing calls this directly
no test coverage detected