summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/module-code/instn-resolve-order-src.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/module-code/instn-resolve-order-src.js')
-rw-r--r--js/src/tests/test262/language/module-code/instn-resolve-order-src.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/module-code/instn-resolve-order-src.js b/js/src/tests/test262/language/module-code/instn-resolve-order-src.js
new file mode 100644
index 0000000000..19ec8f9180
--- /dev/null
+++ b/js/src/tests/test262/language/module-code/instn-resolve-order-src.js
@@ -0,0 +1,17 @@
+// |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: Modules dependencies are resolved in source text order
+esid: sec-moduledeclarationinstantiation
+negative:
+ phase: resolution
+ type: SyntaxError
+flags: [module]
+---*/
+
+$DONOTEVALUATE();
+
+import './instn-resolve-order-src-valid_FIXTURE.js';
+import './instn-resolve-order-src-reference_FIXTURE.js';
+import './instn-resolve-order-src-syntax_FIXTURE.js';