Skip to content
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
13 changes: 11 additions & 2 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -3010,7 +3010,9 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
<dfn>%RangeError.prototype%</dfn>,
<dfn>%ReferenceError.prototype%</dfn>,
<dfn>%SyntaxError.prototype%</dfn>,
<dfn>%TypeError.prototype%</dfn>, and
<dfn>%TypeError.prototype%</dfn>,
<dfn>%SuppressedError.prototype%</dfn>,
<dfn>%AggregateError.prototype%</dfn> and
<dfn>%URIError.prototype%</dfn></li>

<li>The <dfn data-x="js-prod-FunctionBody" data-x-href="https://tc39.es/ecma262/#prod-FunctionBody"><i>FunctionBody</i></dfn> production</li>
Expand Down Expand Up @@ -9866,7 +9868,8 @@ interface <dfn interface>DOMStringList</dfn> {
"name").</p></li>

<li><p>If <var>name</var> is not one of "Error", "EvalError", "RangeError", "ReferenceError",
"SyntaxError", "TypeError", or "URIError", then set <var>name</var> to "Error".</p></li>
"SyntaxError", "TypeError", "AggregateError", "SuppressedError", or "URIError",
then set <var>name</var> to "Error".</p></li>

<li><p>Let <var>valueMessageDesc</var> be ? <var>value</var>.[[GetOwnProperty]]("<code
data-x="">message</code>").</p></li>
Expand Down Expand Up @@ -10328,6 +10331,12 @@ o.myself = o;</code></pre>
<li><p>If <var>serialized</var>.[[Name]] is "URIError", then set <var>prototype</var> to
<span>%URIError.prototype%</span>.</p></li>

<li><p>If <var>serialized</var>.[[Name]] is "AggregateError", then set <var>prototype</var> to
<span>%AggregateError.prototype%</span>.</p></li>

<li><p>If <var>serialized</var>.[[Name]] is "SuppressedError", then set <var>prototype</var> to
<span>%SuppressedError.prototype%</span>.</p></li>

<li><p>Let <var>message</var> be <var>serialized</var>.[[Message]].</p></li>

<li><p>Set <var>value</var> to <span>OrdinaryObjectCreate</span>(<var>prototype</var>, «
Expand Down