summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/module-code/instn-resolve-empty-export.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/module-code/instn-resolve-empty-export.js')
-rw-r--r--js/src/tests/test262/language/module-code/instn-resolve-empty-export.js41
1 files changed, 41 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/module-code/instn-resolve-empty-export.js b/js/src/tests/test262/language/module-code/instn-resolve-empty-export.js
new file mode 100644
index 0000000000..1dee8e70f3
--- /dev/null
+++ b/js/src/tests/test262/language/module-code/instn-resolve-empty-export.js
@@ -0,0 +1,41 @@
+// |reftest| error:SyntaxError module
+// Copyright (C) 2016 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+description: >
+ A NamedExport without an ExportsList contributes to the list of requested
+ modules
+esid: sec-moduledeclarationinstantiation
+info: |
+ [...]
+ 8. For each String required that is an element of
+ module.[[RequestedModules]] do,
+ a. NOTE: Before instantiating a module, all of the modules it requested
+ must be available. An implementation may perform this test at any
+ time prior to this point.
+ b. Let requiredModule be ? HostResolveImportedModule(module, required).
+ c. Perform ? requiredModule.ModuleDeclarationInstantiation().
+
+ 15.2.2.5 Static Semantics: ModuleRequests
+
+ ImportDeclaration : import ImportClause FromClause;
+
+ 1. Return ModuleRequests of FromClause.
+
+ 15.2.3 Exports
+
+ Syntax
+
+ NamedExport:
+ { }
+ { ExportsList }
+ { ExportsList , }
+negative:
+ phase: resolution
+ type: SyntaxError
+flags: [module]
+---*/
+
+$DONOTEVALUATE();
+
+export {} from './instn-resolve-empty-export_FIXTURE.js';