(webComponent: UI5Element)
| 12 | } |
| 13 | |
| 14 | add(webComponent: UI5Element) { |
| 15 | if (this.lookup.has(webComponent)) { |
| 16 | return; |
| 17 | } |
| 18 | |
| 19 | this.list.push(webComponent); |
| 20 | this.lookup.add(webComponent); |
| 21 | } |
| 22 | |
| 23 | remove(webComponent: UI5Element) { |
| 24 | if (!this.lookup.has(webComponent)) { |
no test coverage detected