fix export of parameters when renaming the binding of exported functions - fixes #2753

This commit is contained in:
Sebastian McKenzie
2015-11-02 19:24:23 +00:00
parent 2bdc222c0b
commit d1d0ed901e
5 changed files with 41 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
export function foo(bar) {
}
var bar = {
foo: function () {
foo;
}
};

View File

@@ -0,0 +1,8 @@
export { _foo as foo };
function _foo(bar) {}
var bar = {
foo: function foo() {
_foo;
}
};