(a, b)
| 292 | |
| 293 | # Update the passthrough outputs as well. |
| 294 | def update_passthrough_outputs(a, b): |
| 295 | # pylint: disable=protected-access |
| 296 | for i, t in enumerate(b._output_ts): |
| 297 | if t in a._passthrough_ts: |
| 298 | ii = a._input_ts.index(t) |
| 299 | b._output_ts[i] = b._input_ts[ii] |
| 300 | # pylint: enable=protected-access |
| 301 | |
| 302 | if a2b: |
| 303 | update_passthrough_outputs(sgv0_, sgv1_) |
no test coverage detected