| 1876 | class MatchExpression : public DecomposedExpression { |
| 1877 | public: |
| 1878 | MatchExpression( ArgT arg, MatcherT matcher, char const* matcherString ) |
| 1879 | : m_arg( arg ), m_matcher( matcher ), m_matcherString( matcherString ) {} |
| 1880 | |
| 1881 | virtual bool isBinaryExpression() const CATCH_OVERRIDE { |
| 1882 | return true; |
nothing calls this directly
no outgoing calls
no test coverage detected