(i)
| 12895 | this.insertBefore(n); |
| 12896 | } |
| 12897 | removeInput(i) { |
| 12898 | this._op = null; |
| 12899 | this.dropInput(i); |
| 12900 | for (let j = i + 1; j < this._inputs.length; j++) { |
| 12901 | const it = this.findUseForInput(j); |
| 12902 | it.offset--; |
| 12903 | } |
| 12904 | this._inputs.splice(i, 1); |
| 12905 | } |
| 12906 | removeAllInputs() { |
| 12907 | this._op = null; |
| 12908 | for (let i = 0; i < this._inputs.length; i++) { |
no test coverage detected