(n)
| 12527 | return this.outputs().length - 1; |
| 12528 | } |
| 12529 | appendNode(n) { |
| 12530 | if (n._graph !== this._graph || n.inBlockList()) { |
| 12531 | throw new python.Error('Node not in graph.'); |
| 12532 | } |
| 12533 | n.insertBefore(this._output); |
| 12534 | return n; |
| 12535 | } |
| 12536 | cloneFrom(src, value_map) { |
| 12537 | const local_map = new Map(); |
| 12538 | const env = (v) => { |
no test coverage detected