Skip to content

Commit 4098d29

Browse files
committed
test: fix the illegal syntax in a module for test
this is related to webpack#1792, after removing the ilegal code, the code still cover the cases except case 3.
1 parent a4ad44c commit 4098d29

File tree

1 file changed

+2
-2
lines changed
  • test/cases/parsing/harmony-export-precedence

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export function a() { return "a1"; }
2-
export { a, b } from "./b";
2+
export { b } from "./b";
33
export * from "./c";
4-
export { d, e } from "./b";
4+
export { d } from "./b";
55
export var e = "e1";

0 commit comments

Comments
 (0)