Chromium Code Reviews

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

Issue 2388153003: [modules] Implement namespace imports. (Closed)
Patch Set: Extend a test. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: test/mjsunit/modules-skip-2.js
diff --git a/test/mjsunit/modules-skip-2.js b/test/mjsunit/modules-skip-2.js
index fdd576a988d067e5aca39ade21f0ec0da3ab5236..d5ff578b497e68bc3d5821a94decd9f0743e6de3 100644
--- a/test/mjsunit/modules-skip-2.js
+++ b/test/mjsunit/modules-skip-2.js
@@ -5,3 +5,4 @@
export {a as b, default} from "modules-skip-1.js";
import {a as tmp} from "modules-skip-1.js";
export {tmp as c};
+export const zzz = 999;

Powered by Google App Engine