Skip to content

Commit

Permalink
minor lints (#5740)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlamsl authored Nov 22, 2022
1 parent e5cbd3e commit 24c3db1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/compress.js
Original file line number Diff line number Diff line change
Expand Up @@ -6559,7 +6559,7 @@ Compressor.prototype.compress = function(node) {
});
return true;
}
if (node instanceof AST_SymbolConst || node instanceof AST_SymbolLet) {
if (node instanceof AST_SymbolDeclaration) {
references[node.definition().id] = false;
return true;
}
Expand Down
1 change: 1 addition & 0 deletions test/ufuzz/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2494,6 +2494,7 @@ function patch_try_catch(orig, toplevel) {
var beautify_options = {
compress: false,
mangle: false,
module: false,
output: {
beautify: true,
braces: true,
Expand Down

0 comments on commit 24c3db1

Please sign in to comment.