| 9558 | } |
| 9559 | |
| 9560 | void DescribeNegationTo(::std::ostream* os) const { |
| 9561 | *os << "doesn't " << (full_match_ ? "match" : "contain") |
| 9562 | << " regular expression "; |
| 9563 | UniversalPrinter<std::string>::Print(regex_->pattern(), os); |
| 9564 | } |
| 9565 | |
| 9566 | private: |
| 9567 | const std::shared_ptr<const RE> regex_; |
nothing calls this directly
no outgoing calls
no test coverage detected