()
| 22 | isClosed() { return this._closed; } |
| 23 | async goto(url: string) { this._url = url; this._title = `title:${url}`; } |
| 24 | async close() { |
| 25 | if (this._closed) return; |
| 26 | this._closed = true; |
| 27 | this.emit("close"); |
| 28 | } |
| 29 | setTitle(t: string) { this._title = t; } |
| 30 | } |
| 31 |
no outgoing calls
no test coverage detected