Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Unified Diff: test/mjsunit/modules-skip-namespace.js

Issue 2388153003: [modules] Implement namespace imports. (Closed)
Patch Set: Add comment on VisitModuleNamespaceImports. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/modules-skip-2.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/modules-skip-namespace.js
diff --git a/test/mjsunit/modules-skip-namespace.js b/test/mjsunit/modules-skip-namespace.js
new file mode 100644
index 0000000000000000000000000000000000000000..ff6a7b81d3b03efd09325fe3bef8a9d7f42b6ffd
--- /dev/null
+++ b/test/mjsunit/modules-skip-namespace.js
@@ -0,0 +1,13 @@
+// Copyright 2016 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+//assertEquals(
+// ["ns", Symbol.toStringTag, Symbol.iterator], Reflect.ownKeys(ns2));
+//assertEquals(["ns"], [...ns2]);
+
+export * from "modules-skip-4.js";
+export * from "modules-skip-5.js";
+export var zzz = 123;
+export {ns2};
+import * as ns2 from "modules-namespace2.js";
« no previous file with comments | « test/mjsunit/modules-skip-2.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698