Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing 'constructor' definitions #13

Open
wants to merge 1 commit into
base: explicit-resource-management
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -47024,6 +47024,10 @@ <h1>DisposableStack.prototype.adopt ( _value_, _onDispose_ )</h1>
1. Return _value_.
</emu-alg>
</emu-clause>
<emu-clause id="sec-disposablestack.prototype.constructor">
<h1>DisposableStack.prototype.constructor</h1>
<p>The initial value of `DisposableStack.prototype.constructor` is %DisposableStack%.</p>
</emu-clause>

<emu-clause id="sec-disposablestack.prototype.defer">
<h1>DisposableStack.prototype.defer ( _onDispose_ )</h1>
Expand Down Expand Up @@ -47218,6 +47222,11 @@ <h1>AsyncDisposableStack.prototype.adopt ( _value_, _onDisposeAsync_ )</h1>
</emu-alg>
</emu-clause>

<emu-clause id="sec-asyncdisposablestack.prototype.constructor">
<h1>AsyncDisposableStack.prototype.constructor</h1>
<p>The initial value of `AsyncDisposableStack.prototype.constructor` is %AsyncDisposableStack%.</p>
</emu-clause>

<emu-clause id="sec-asyncdisposablestack.prototype.defer">
<h1>AsyncDisposableStack.prototype.defer ( _onDisposeAsync_ )</h1>
<p>When the `defer` function is called with one argument, the following steps are taken:</p>
Expand Down
Loading