Ensure directives get printed in block statements (#4873)

This commit is contained in:
Brian Ng
2016-12-16 14:30:14 -06:00
committed by Henry Zhu
parent 2bbc36d25e
commit 01bc43464e
8 changed files with 37 additions and 8 deletions

View File

@@ -10,4 +10,6 @@
factory();
global.myCustomModuleName = mod.exports;
}
})(this, function () {});
})(this, function () {
"use strict";
});

View File

@@ -10,4 +10,6 @@
factory(global.foo, global.fooBar, global.fooBar);
global.actual = mod.exports;
}
})(this, function () {});
})(this, function () {
"use strict";
});

View File

@@ -10,4 +10,6 @@
factory(global.render);
global.actual = mod.exports;
}
})(this, function (_render) {});
})(this, function (_render) {
"use strict";
});

View File

@@ -10,4 +10,6 @@
factory(global.baz);
global.actual = mod.exports;
}
})(this, function () {});
})(this, function () {
"use strict";
});