Skip to content

Commit 9b84840

Browse files
Add the prototype and constructor properties (tc39#59)
1 parent ad14f9e commit 9b84840

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

spec.html

+40
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,21 @@ <h1>AsyncContext.Snapshot ( )</h1>
349349
</emu-clause>
350350
</emu-clause>
351351

352+
<emu-clause id="sec-properties-of-the-asynccontext-snapshot-constructor">
353+
<h1>Properties of the AsyncContext.Snapshot Constructor</h1>
354+
<p>The AsyncContext.Snapshot constructor:</p>
355+
<ul>
356+
<li>has a [[Prototype]] internal slot whose value is %Function.prototype%.</li>
357+
<li>has the following properties:</li>
358+
</ul>
359+
360+
<emu-clause id="sec-asynccontext-snapshot.prototype">
361+
<h1>AsyncContext.Snapshot.prototype</h1>
362+
<p>The initial value of `AsyncContext.Snapshot.prototype` is the AsyncContext.Snapshot prototype object.</p>
363+
<p>This property has the attributes { [[Writable]]: *false*, [[Enumerable]]: *false*, [[Configurable]]: *false* }.</p>
364+
</emu-clause>
365+
</emu-clause>
366+
352367
<emu-clause id="sec-properties-of-the-asynccontext-snapshot-prototype-object">
353368
<h1>Properties of the AsyncContext.Snapshot Prototype Object</h1>
354369
<p>The <dfn>AsyncContext.Snapshot prototype object</dfn>:</p>
@@ -359,6 +374,11 @@ <h1>Properties of the AsyncContext.Snapshot Prototype Object</h1>
359374
<li>does not have any of the other internal slots of AsyncContext.Snapshot instances.</li>
360375
</ul>
361376

377+
<emu-clause id="sec-asynccontext-snapshot.prototype.constructor">
378+
<h1>AsyncContext.Snapshot.prototype.constructor</h1>
379+
<p>The initial value of `AsyncContext.Snapshot.prototype.constructor` is %AsyncContext.Snapshot%.</p>
380+
</emu-clause>
381+
362382
<emu-clause id="sec-asynccontext-snapshot.prototype.run">
363383
<h1>AsyncContext.Snapshot.prototype.run ( _func_, ..._args_ )</h1>
364384
<p>This method performs the following steps when called:</p>
@@ -448,6 +468,21 @@ <h1>AsyncContext.Variable ( _options_ )</h1>
448468
</emu-clause>
449469
</emu-clause>
450470

471+
<emu-clause id="sec-properties-of-the-asynccontext-variable-constructor">
472+
<h1>Properties of the AsyncContext.Variable Constructor</h1>
473+
<p>The AsyncContext.Variable constructor:</p>
474+
<ul>
475+
<li>has a [[Prototype]] internal slot whose value is %Function.prototype%.</li>
476+
<li>has the following properties:</li>
477+
</ul>
478+
479+
<emu-clause id="sec-asynccontext-variable.prototype">
480+
<h1>AsyncContext.Variable.prototype</h1>
481+
<p>The initial value of `AsyncContext.Variable.prototype` is the AsyncContext.Variable prototype object.</p>
482+
<p>This property has the attributes { [[Writable]]: *false*, [[Enumerable]]: *false*, [[Configurable]]: *false* }.</p>
483+
</emu-clause>
484+
</emu-clause>
485+
451486
<emu-clause id="sec-properties-of-the-asynccontext-variable-prototype-object">
452487
<h1>Properties of the AsyncContext.Variable Prototype Object</h1>
453488
<p>The <dfn>AsyncContext.Variable prototype object</dfn>:</p>
@@ -458,6 +493,11 @@ <h1>Properties of the AsyncContext.Variable Prototype Object</h1>
458493
<li>does not have any of the other internal slots of AsyncContext.Variable instances.</li>
459494
</ul>
460495

496+
<emu-clause id="sec-asynccontext-variable.prototype.constructor">
497+
<h1>AsyncContext.Variable.prototype.constructor</h1>
498+
<p>The initial value of `AsyncContext.Variable.prototype.constructor` is %AsyncContext.Variable%.</p>
499+
</emu-clause>
500+
461501
<emu-clause id="sec-asynccontext-variable.prototype.run">
462502
<h1>AsyncContext.Variable.prototype.run ( _value_, _func_, ..._args_ )</h1>
463503
<p>This method performs the following steps when called:</p>

0 commit comments

Comments
 (0)