| 369 | } |
| 370 | |
| 371 | void DescribeTo(::std::ostream* os) const override { |
| 372 | if (src_oidx_) { |
| 373 | *os << "output slot: " << src_oidx_ << ", source: ("; |
| 374 | } |
| 375 | |
| 376 | src_matcher_.DescribeTo(os); |
| 377 | |
| 378 | if (src_oidx_) { |
| 379 | *os << ")"; |
| 380 | } |
| 381 | } |
| 382 | |
| 383 | private: |
| 384 | ::testing::Matcher<const Node*> src_matcher_; |
nothing calls this directly
no test coverage detected