Skip to content
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
14 changes: 7 additions & 7 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -14128,7 +14128,7 @@ <h1>
_name_: a property key or Private Name,
_closure_: a function object,
_enumerable_: a Boolean,
): either a normal completion containing either a PrivateElement or ~unused~, or an abrupt completion
): either a normal completion containing either a PrivateElement or ~empty~, or an abrupt completion
</h1>
<dl class="header">
</dl>
Expand All @@ -14138,7 +14138,7 @@ <h1>
1. Let _propertyDesc_ be the PropertyDescriptor { [[Value]]: _closure_, [[Writable]]: *true*, [[Enumerable]]: _enumerable_, [[Configurable]]: *true* }.
1. Perform ? DefinePropertyOrThrow(_homeObj_, _name_, _propertyDesc_).
1. NOTE: DefinePropertyOrThrow only returns an abrupt completion when attempting to define a class static method whose _name_ is *"prototype"*.
1. Return ~unused~.
1. Return ~empty~.
</emu-alg>
</emu-clause>

Expand Down Expand Up @@ -24634,7 +24634,7 @@ <h1>
Runtime Semantics: MethodDefinitionEvaluation (
_obj_: an Object,
_enumerable_: a Boolean,
): either a normal completion containing either a PrivateElement or ~unused~, or an abrupt completion
): either a normal completion containing either a PrivateElement or ~empty~, or an abrupt completion
</h1>
<dl class="header">
</dl>
Expand All @@ -24658,7 +24658,7 @@ <h1>
1. Return PrivateElement { [[Key]]: _propertyKey_, [[Kind]]: ~accessor~, [[Getter]]: _closure_, [[Setter]]: *undefined* }.
1. Let _propertyDesc_ be the PropertyDescriptor { [[Getter]]: _closure_, [[Enumerable]]: _enumerable_, [[Configurable]]: *true* }.
1. Perform ? DefinePropertyOrThrow(_obj_, _propertyKey_, _propertyDesc_).
1. Return ~unused~.
1. Return ~empty~.
</emu-alg>
<emu-grammar>MethodDefinition : `set` ClassElementName `(` PropertySetParameterList `)` `{` FunctionBody `}`</emu-grammar>
<emu-alg>
Expand All @@ -24673,7 +24673,7 @@ <h1>
1. Return PrivateElement { [[Key]]: _propertyKey_, [[Kind]]: ~accessor~, [[Getter]]: *undefined*, [[Setter]]: _closure_ }.
1. Let _propertyDesc_ be the PropertyDescriptor { [[Setter]]: _closure_, [[Enumerable]]: _enumerable_, [[Configurable]]: *true* }.
1. Perform ? DefinePropertyOrThrow(_obj_, _propertyKey_, _propertyDesc_).
1. Return ~unused~.
1. Return ~empty~.
</emu-alg>
<emu-grammar>GeneratorMethod : `*` ClassElementName `(` UniqueFormalParameters `)` `{` GeneratorBody `}`</emu-grammar>
<emu-alg>
Expand Down Expand Up @@ -25681,7 +25681,7 @@ <h1>
<h1>
Runtime Semantics: ClassElementEvaluation (
_obj_: an Object,
): either a normal completion containing either a ClassFieldDefinition Record, a ClassStaticBlockDefinition Record, a PrivateElement, or ~unused~, or an abrupt completion
): either a normal completion containing either a ClassFieldDefinition Record, a ClassStaticBlockDefinition Record, a PrivateElement, or ~empty~, or an abrupt completion
</h1>
<dl class="header">
</dl>
Expand Down Expand Up @@ -25713,7 +25713,7 @@ <h1>
ClassElement : `;`
</emu-grammar>
<emu-alg>
1. Return ~unused~.
1. Return ~empty~.
</emu-alg>
</emu-clause>

Expand Down
Loading