(control_name)
| 390 | nets_or_steps = _PrependNets(nets_or_steps, condition_not_net) |
| 391 | |
| 392 | def while_step(control_name): |
| 393 | return core.scoped_execution_step( |
| 394 | _get_next_step_name(control_name, name), |
| 395 | nets_or_steps, |
| 396 | should_stop_blob=stop_blob, |
| 397 | ) |
| 398 | |
| 399 | if _IsNets(nets_or_steps): |
| 400 | # In this case, while_step has sub-nets: |
no test coverage detected
searching dependent graphs…