-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
Description
Rollup Version
4.9.1
Operating System (or Browser)
repl
Node Version (if applicable)
No response
Link To Reproduction
Expected Behaviour
export { x as "'x" } from 'x';
function a () {}
function b () {}
export { a as "'a", b as "'b" };System.register(['x'], (function (exports) {
'use strict';
return {
setters: [function (module) {
exports("'x", module.x);
}],
execute: (function () {
exports({
"'a": a,
"'b": b
});
function a () {}
function b () {}
})
};
}));Actual Behaviour
System.register(['x'], (function (exports) {
'use strict';
return {
setters: [function (module) {
exports(''x', module.x);
}],
execute: (function () {
exports({
'a: a,
'b: b
});
function a () {}
function b () {}
})
};
}));Reactions are currently unavailable