summaryrefslogtreecommitdiff
path: root/ext/websocket/02_websocketstream.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/websocket/02_websocketstream.js')
-rw-r--r--ext/websocket/02_websocketstream.js25
1 files changed, 2 insertions, 23 deletions
diff --git a/ext/websocket/02_websocketstream.js b/ext/websocket/02_websocketstream.js
index dba22d557..8b032d1c2 100644
--- a/ext/websocket/02_websocketstream.js
+++ b/ext/websocket/02_websocketstream.js
@@ -60,7 +60,6 @@
const _url = Symbol("[[url]]");
const _connection = Symbol("[[connection]]");
const _closed = Symbol("[[closed]]");
- const _closing = Symbol("[[closing]]");
const _earlyClose = Symbol("[[earlyClose]]");
class WebSocketStream {
[_rid];
@@ -260,26 +259,8 @@
}
case "closed":
case "close": {
- if (this[_closing]) {
- this[_closed].resolve(value);
- core.tryClose(this[_rid]);
- } else {
- PromisePrototypeThen(
- core.opAsync("op_ws_close", {
- rid: this[_rid],
- ...value,
- }),
- () => {
- this[_closed].resolve(value);
- core.tryClose(this[_rid]);
- },
- (err) => {
- this[_closed].reject(err);
- controller.error(err);
- core.tryClose(this[_rid]);
- },
- );
- }
+ this[_closed].resolve(value);
+ core.tryClose(this[_rid]);
break;
}
case "error": {
@@ -330,7 +311,6 @@
}
[_earlyClose] = false;
- [_closing] = false;
[_closed] = new Deferred();
get closed() {
webidl.assertBranded(this, WebSocketStream);
@@ -373,7 +353,6 @@
if (this[_connection].state === "pending") {
this[_earlyClose] = true;
} else if (this[_closed].state === "pending") {
- this[_closing] = true;
PromisePrototypeCatch(
core.opAsync("op_ws_close", {
rid: this[_rid],