| 522 | return Out(NodeWith(ConstantValue(val))); |
| 523 | } |
| 524 | ::testing::Matcher<impl::OutEdge> Out( |
| 525 | int oidx, ::testing::Matcher<const Node*> node_matcher) { |
| 526 | return ::testing::MakeMatcher(new OutEdgeMatcher(node_matcher, oidx)); |
| 527 | } |
| 528 | } // namespace matchers |
| 529 | |
| 530 | Node* FindNodeByName(Graph* g, absl::string_view name) { |