Another variant of export added - export {Name}. (#1737)
This commit is contained in:
committed by
Alex Lam S.L
parent
66e9039350
commit
a729c43e87
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user