Another variant of export added - export {Name}. (#1737)

This commit is contained in:
Ondřej Španěl
2017-03-31 11:51:27 +02:00
committed by Alex Lam S.L
parent 66e9039350
commit a729c43e87
2 changed files with 29 additions and 19 deletions

View File

@@ -204,8 +204,9 @@ export_module_statement: {
export * from "a.js";
export {A} from "a.js";
export {A, B} from "a.js";
export {C};
}
expect_exact: 'export*from"a.js";export{A}from"a.js";export{A,B}from"a.js";'
expect_exact: 'export*from"a.js";export{A}from"a.js";export{A,B}from"a.js";export{C};'
}
import_statement_mangling: {