()
| 30 | } |
| 31 | |
| 32 | shift() { |
| 33 | const webComponent = this.list.shift(); |
| 34 | if (webComponent) { |
| 35 | this.lookup.delete(webComponent); |
| 36 | return webComponent; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | isEmpty() { |
| 41 | return this.list.length === 0; |
no outgoing calls
no test coverage detected