File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4350,13 +4350,13 @@ as seen for example in [[#example-ws-no-backpressure]].
4350
4350
1. Let |result| be ? [$AcquireWritableStreamDefaultWriter$] ([=this=] ).
4351
4351
1. If |result| is an abrupt completion, return [=a promise rejected with=] |result|.\[[Value]] .
4352
4352
1. Let |writer| be |result|.\[[Value]] .
4353
- 1. Let |writePromise| be ! [$WritableStreamDefaultWriterWrite$] ([=this=] , |chunk|).
4353
+ 1. Let |writePromise| be ! [$WritableStreamDefaultWriterWrite$] (|writer| , |chunk|).
4354
4354
1. Return the result of [=reacting=] to |writePromise|:
4355
4355
1. If |writePromise| is fulfilled with a value |v|, then:
4356
- 1. Perform ! [$WritableStreamDefaultWriterRelease$] ([=this=] ).
4356
+ 1. Perform ! [$WritableStreamDefaultWriterRelease$] (|writer| ).
4357
4357
1. Return |v|.
4358
4358
1. If |writePromise| is rejected with a value |r|, then:
4359
- 1. Perform ! [$WritableStreamDefaultWriterRelease$] ([=this=] ).
4359
+ 1. Perform ! [$WritableStreamDefaultWriterRelease$] (|writer| ).
4360
4360
1. Return [=a promise rejected with=] |r|.
4361
4361
</div>
4362
4362
You can’t perform that action at this time.
0 commit comments