Ensure directives get printed in block statements (#4873)
This commit is contained in:
@@ -10,4 +10,6 @@
|
||||
factory();
|
||||
global.myCustomModuleName = mod.exports;
|
||||
}
|
||||
})(this, function () {});
|
||||
})(this, function () {
|
||||
"use strict";
|
||||
});
|
||||
|
||||
@@ -10,4 +10,6 @@
|
||||
factory(global.foo, global.fooBar, global.fooBar);
|
||||
global.actual = mod.exports;
|
||||
}
|
||||
})(this, function () {});
|
||||
})(this, function () {
|
||||
"use strict";
|
||||
});
|
||||
|
||||
@@ -10,4 +10,6 @@
|
||||
factory(global.render);
|
||||
global.actual = mod.exports;
|
||||
}
|
||||
})(this, function (_render) {});
|
||||
})(this, function (_render) {
|
||||
"use strict";
|
||||
});
|
||||
|
||||
@@ -10,4 +10,6 @@
|
||||
factory(global.baz);
|
||||
global.actual = mod.exports;
|
||||
}
|
||||
})(this, function () {});
|
||||
})(this, function () {
|
||||
"use strict";
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user