Skip to content

Commit

Permalink
Add the prototype and constructor properties (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreubotella authored Jul 3, 2023
1 parent ad14f9e commit 9b84840
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,21 @@ <h1>AsyncContext.Snapshot ( )</h1>
</emu-clause>
</emu-clause>

<emu-clause id="sec-properties-of-the-asynccontext-snapshot-constructor">
<h1>Properties of the AsyncContext.Snapshot Constructor</h1>
<p>The AsyncContext.Snapshot constructor:</p>
<ul>
<li>has a [[Prototype]] internal slot whose value is %Function.prototype%.</li>
<li>has the following properties:</li>
</ul>

<emu-clause id="sec-asynccontext-snapshot.prototype">
<h1>AsyncContext.Snapshot.prototype</h1>
<p>The initial value of `AsyncContext.Snapshot.prototype` is the AsyncContext.Snapshot 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-asynccontext-snapshot-prototype-object">
<h1>Properties of the AsyncContext.Snapshot Prototype Object</h1>
<p>The <dfn>AsyncContext.Snapshot prototype object</dfn>:</p>
Expand All @@ -359,6 +374,11 @@ <h1>Properties of the AsyncContext.Snapshot Prototype Object</h1>
<li>does not have any of the other internal slots of AsyncContext.Snapshot instances.</li>
</ul>

<emu-clause id="sec-asynccontext-snapshot.prototype.constructor">
<h1>AsyncContext.Snapshot.prototype.constructor</h1>
<p>The initial value of `AsyncContext.Snapshot.prototype.constructor` is %AsyncContext.Snapshot%.</p>
</emu-clause>

<emu-clause id="sec-asynccontext-snapshot.prototype.run">
<h1>AsyncContext.Snapshot.prototype.run ( _func_, ..._args_ )</h1>
<p>This method performs the following steps when called:</p>
Expand Down Expand Up @@ -448,6 +468,21 @@ <h1>AsyncContext.Variable ( _options_ )</h1>
</emu-clause>
</emu-clause>

<emu-clause id="sec-properties-of-the-asynccontext-variable-constructor">
<h1>Properties of the AsyncContext.Variable Constructor</h1>
<p>The AsyncContext.Variable constructor:</p>
<ul>
<li>has a [[Prototype]] internal slot whose value is %Function.prototype%.</li>
<li>has the following properties:</li>
</ul>

<emu-clause id="sec-asynccontext-variable.prototype">
<h1>AsyncContext.Variable.prototype</h1>
<p>The initial value of `AsyncContext.Variable.prototype` is the AsyncContext.Variable 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-asynccontext-variable-prototype-object">
<h1>Properties of the AsyncContext.Variable Prototype Object</h1>
<p>The <dfn>AsyncContext.Variable prototype object</dfn>:</p>
Expand All @@ -458,6 +493,11 @@ <h1>Properties of the AsyncContext.Variable Prototype Object</h1>
<li>does not have any of the other internal slots of AsyncContext.Variable instances.</li>
</ul>

<emu-clause id="sec-asynccontext-variable.prototype.constructor">
<h1>AsyncContext.Variable.prototype.constructor</h1>
<p>The initial value of `AsyncContext.Variable.prototype.constructor` is %AsyncContext.Variable%.</p>
</emu-clause>

<emu-clause id="sec-asynccontext-variable.prototype.run">
<h1>AsyncContext.Variable.prototype.run ( _value_, _func_, ..._args_ )</h1>
<p>This method performs the following steps when called:</p>
Expand Down

0 comments on commit 9b84840

Please sign in to comment.