swc/ecmascript/codegen/tests/references/5b9f113c3bdd0c49.js
David Sherret 708efebac9 Fix comment line's end to be on same line (#544)
- fix comment line's end to be on same line.
2019-12-30 11:09:45 +09:00

23 lines
480 B
JavaScript

function a() {
b();
c = 1;
throw 'd';
// completely discarding the `if` would introduce some
// bugs. UglifyJS v1 doesn't deal with this issue; in v2
// we copy any declarations to the upper scope.
if (c) {
e();
var c;
function b() {
}
;
// but nested declarations should not be kept.
(function() {
var f;
function e() {
}
;
})();
}
}