| 2197 | RhsT m_rhs; |
| 2198 | |
| 2199 | void streamReconstructedExpression( std::ostream &os ) const override { |
| 2200 | formatReconstructedExpression |
| 2201 | ( os, Catch::Detail::stringify( m_lhs ), m_op, Catch::Detail::stringify( m_rhs ) ); |
| 2202 | } |
| 2203 | |
| 2204 | public: |
| 2205 | BinaryExpr( bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs ) |
nothing calls this directly
no test coverage detected