(webComponent: UI5Element)
| 21 | } |
| 22 | |
| 23 | remove(webComponent: UI5Element) { |
| 24 | if (!this.lookup.has(webComponent)) { |
| 25 | return; |
| 26 | } |
| 27 | |
| 28 | this.list = this.list.filter(item => item !== webComponent); |
| 29 | this.lookup.delete(webComponent); |
| 30 | } |
| 31 | |
| 32 | shift() { |
| 33 | const webComponent = this.list.shift(); |
no outgoing calls
no test coverage detected