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

Normative: GetExportedNames adjustments for late-defined export names #1306

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
spec note wordings
  • Loading branch information
guybedford committed Jan 26, 2019
commit 53ddf9bc7b5ba235e510f2ac0c8662affee7ea1d
6 changes: 3 additions & 3 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -8444,10 +8444,10 @@ <h1>Module Namespace Exotic Objects</h1>
[[Exports]]
</td>
<td>
List of String | *null*
List of String | Null
</td>
<td>
A List containing the String values of the exported names exposed as own properties of this object. The list is ordered as if an Array of those String values had been sorted using `Array.prototype.sort` using *undefined* as _comparefn_.
A List containing the String values of the exported names exposed as own properties of this object. A *null* value indicates a non-Source-Text Module Record with deferred export bindings. The list is ordered as if an Array of those String values had been sorted using `Array.prototype.sort` using *undefined* as _comparefn_.
</td>
</tr>
<tr>
Expand Down Expand Up @@ -22218,7 +22218,7 @@ <h1>ModuleDeclarationEnvironmentSetup ( _module_ )</h1>
1. Return NormalCompletion(~empty~).
</emu-alg>
<emu-note>
<p>A *null* return from GetExportedNames indicates a non-source text Module Record with deferred exports. Star exports from these modules are not supported and throw a Syntax Error.</p>
<p>A *null* return from GetExportedNames indicates a non-Source Text Module Record with deferred exports. Star exports from these modules are not currently supported and throw a Syntax Error. This constraint could be removed in future.</p>
</emu-note>
</emu-clause>
</emu-clause>
Expand Down