()
| 50 | } |
| 51 | |
| 52 | dispatchClose() { |
| 53 | if (this.isClosed) { |
| 54 | throw new Error('Cannot close a CloseController multiple times') |
| 55 | } |
| 56 | if (this.listeners > 0) { |
| 57 | this.target.dispatchEvent(new Event('close')) |
| 58 | } |
| 59 | this.isClosed = true |
| 60 | } |
| 61 | } |
no test coverage detected