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 .prototype property entries for DisposableStack/AsyncDisposableStack #167

Merged
merged 1 commit into from
Jul 13, 2023
Merged
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
17 changes: 15 additions & 2 deletions spec.emu
Original file line number Diff line number Diff line change
Expand Up @@ -4396,8 +4396,15 @@ contributors: Ron Buckton, Ecma International
<h1>Properties of the DisposableStack Constructor</h1>
<p>The DisposableStack constructor:</p>
<ul>
<li>Has a [[Prototype]] internal slot whose value is %Function.prototype%.</li>
<li>has a [[Prototype]] internal slot whose value is %Function.prototype%.</li>
<li>has the following properties:</li>
</ul>

<emu-clause id="sec-disposablestack.prototype">
<h1>DisposableStack.prototype</h1>
<p>The initial value of `DisposableStack.prototype` is the DisposableStack prototype object.</p>
<p>This property has the attributes { [[Writable]]: *false*, [[Enumerable]]: *false*, [[Configurable]]: *false* }.</p>
</emu-clause>
</emu-clause>

<emu-clause id="sec-properties-of-the-disposablestack-prototype-object">
Expand Down Expand Up @@ -4595,8 +4602,14 @@ contributors: Ron Buckton, Ecma International
<h1>Properties of the AsyncDisposableStack Constructor</h1>
<p>The AsyncDisposableStack constructor:</p>
<ul>
<li>Has a [[Prototype]] internal slot whose value is %Function.prototype%.</li>
<li>has a [[Prototype]] internal slot whose value is %Function.prototype%.</li>
<li>has the following properties:</li>
</ul>
<emu-clause id="sec-asyncdisposablestack.prototype">
<h1>AsyncDisposableStack.prototype</h1>
<p>The initial value of `AsyncDisposableStack.prototype` is the AsyncDisposableStack prototype object.</p>
<p>This property has the attributes { [[Writable]]: *false*, [[Enumerable]]: *false*, [[Configurable]]: *false* }.</p>
</emu-clause>
</emu-clause>

<emu-clause id="sec-properties-of-the-asyncdisposablestack-prototype-object">
Expand Down