UglifyJS/test/compress/try-catch.js

10 lines
222 B
JavaScript
Raw Normal View History

catch_destructuring_with_sequence: {
input: {
try {
throw {};
} catch ({xCover = (0, function() {})} ) {
}
}
expect_exact: "try{throw{}}catch({xCover=(0,function(){})}){}"
}