(i)
| 12882 | n.destroy(); |
| 12883 | } |
| 12884 | findUseForInput(i) { |
| 12885 | const input_uses = this._inputs[i]._uses; |
| 12886 | for (const use_it of input_uses) { |
| 12887 | if (use_it.user === this && use_it.offset === i) { |
| 12888 | return use_it; |
| 12889 | } |
| 12890 | } |
| 12891 | throw new python.Error('Input use not found.'); |
| 12892 | } |
| 12893 | moveBefore(n) { |
| 12894 | this.removeFromList(); |
| 12895 | this.insertBefore(n); |
no outgoing calls
no test coverage detected