| 379 | : parent_(parent), state_map_(cond_state_map), predicate_(predicate) {} |
| 380 | |
| 381 | Status Conditional::AddMerge(Node* m) { |
| 382 | merges_.insert(m); |
| 383 | return Status::OK(); |
| 384 | } |
| 385 | |
| 386 | Status Conditional::AddSwitch(Node* s) { |
| 387 | VLOG(5) << "Adding switch " << s->DebugString(); |
no test coverage detected