()
| 334 | } |
| 335 | |
| 336 | get url () { |
| 337 | webidl.brandCheck(this, WebSocket) |
| 338 | |
| 339 | // The url getter steps are to return this's url, serialized. |
| 340 | return URLSerializer(this.#url) |
| 341 | } |
| 342 | |
| 343 | get extensions () { |
| 344 | webidl.brandCheck(this, WebSocket) |
nothing calls this directly
no test coverage detected