()
| 12914 | return this.next !== null; |
| 12915 | } |
| 12916 | removeFromList() { |
| 12917 | this._owning_block = null; |
| 12918 | const next = this.next; |
| 12919 | const prev = this.prev; |
| 12920 | prev.next = next; |
| 12921 | next.prev = prev; |
| 12922 | this.next = null; |
| 12923 | this.prev = null; |
| 12924 | } |
| 12925 | destroy() { |
| 12926 | while (this.outputs().length > 0) { |
| 12927 | this.eraseOutput(this.outputs().length - 1); |
no outgoing calls
no test coverage detected