Skip to content

Commit

Permalink
Review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Valerie R Young committed Apr 18, 2018
1 parent 7ad13d7 commit b3e3f60
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -22250,7 +22250,7 @@ <h1>Source Text Module Records</h1>
List of ExportEntry Records
</td>
<td>
A List of ExportEntry records derived from the code of this module that correspond to reexported imports that occur within the module.
A List of ExportEntry records derived from the code of this module that correspond to reexported imports that occur within the module or direct exports from an export * as namespace.
</td>
</tr>
<tr>
Expand All @@ -22261,7 +22261,7 @@ <h1>Source Text Module Records</h1>
List of ExportEntry Records
</td>
<td>
A List of ExportEntry records derived from the code of this module that correspond to export * declarations that occur within the module.
A List of ExportEntry records derived from the code of this module that correspond to export * declarations (but not export * as namespace declarations) that occur within the module.
</td>
</tr>
<tr>
Expand Down Expand Up @@ -22470,7 +22470,7 @@ <h1>Source Text Module Records</h1>
[[ExportName]]
</td>
<td>
String
String | null
</td>
<td>
The name used to export this binding by this module.
Expand Down Expand Up @@ -22926,7 +22926,7 @@ <h1>ModuleDeclarationEnvironmentSetup( _module_ )</h1>
1. Else,
1. Let _resolution_ be ? _importedModule_.ResolveExport(_in_.[[ImportName]], &laquo; &raquo;).
1. If _resolution_ is *null* or `"ambiguous"`, throw a *SyntaxError* exception.
1. If _resolution_.[[isNamespace]], then
1. If _resolution_.[[isNamespace]] is *true*, then
1. Let _namespace_ be ? GetModuleNamespace(_resolution_.[[Module]]).
1. Perform ! _envRec_.CreateImmutableBinding(_in_.[[LocalName]], *true*).
1. Call _envRec_.InitializeBinding(_in_.[[LocalName]], _namespace_).
Expand Down

0 comments on commit b3e3f60

Please sign in to comment.