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

Link to TC39 spec for "abrupt completion". #3803

Merged
merged 3 commits into from Jul 10, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 5 additions & 4 deletions source
Expand Up @@ -3031,6 +3031,7 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
<li>The <dfn data-x="js-prod-Script" data-x-href="https://tc39.github.io/ecma262/#prod-Script"><i>Script</i></dfn> production</li>

<li>The <dfn data-x="js-Type" data-x-href="https://tc39.github.io/ecma262/#sec-ecmascript-data-types-and-values">Type</dfn> notation</li>
<li>The <dfn data-x="abrupt completion" data-x-href="https://tc39.github.io/ecma262/#sec-completion-record-specification-type">Completion Record</dfn> specification type</li>
<li>The <dfn data-x="js-List" data-x-href="https://tc39.github.io/ecma262/#sec-list-and-record-specification-type">List</dfn> and
<dfn data-x-href="https://tc39.github.io/ecma262/#sec-list-and-record-specification-type">Record</dfn> specification types</li>
<li>The <dfn data-x="PropertyDescriptor" data-x-href="https://tc39.github.io/ecma262/#sec-property-descriptor-specification-type">Property Descriptor</dfn> specification type</li>
Expand Down Expand Up @@ -87319,7 +87320,7 @@ interface <dfn>ApplicationCache</dfn> : <span>EventTarget</span> {
</li>

<li>
<p>If <var>evaluationStatus</var> is an abrupt completion, then:</p>
<p>If <var>evaluationStatus</var> is an <span>abrupt completion</span>, then:</p>

<ol>
<li>
Expand Down Expand Up @@ -87416,7 +87417,7 @@ interface <dfn>ApplicationCache</dfn> : <span>EventTarget</span> {
</li>

<li>
<p>If <var>evaluationStatus</var> is an abrupt completion, then:</p>
<p>If <var>evaluationStatus</var> is an <span>abrupt completion</span>, then:</p>

<ol>
<li><p>If <var>rethrow errors</var> is true, rethrow the exception given by
Expand Down Expand Up @@ -88160,8 +88161,8 @@ document.querySelector("button").addEventListener("click", bound);

<li><p><span>Clean up after running script</span> with <var>job settings</var>.</p></li>

<li><p>If <var>result</var> is an abrupt completion, <span>report the exception</span> given by
<var>result</var>.[[Value]].</p></li>
<li><p>If <var>result</var> is an <span>abrupt completion</span>, then <span>report the
exception</span> given by <var>result</var>.[[Value]].</p></li>
</ol>
</li>
</ol>
Expand Down