oxc/crates/oxc_minifier/tests
camc314 a80460c6fe fix(minifier): correctly set self.changed when minimizing if stmts (#8420)
Before:

```
==== Input ====
require('./index.js')(function (e, os) {
  if (e) return console.log(e)
  return console.log(JSON.stringify(os))
})

==== First Minification
require("./index.js")(function(e, os) {
        return console.log(e ? e : JSON.stringify(os));
});

==== Second Minification ====
require("./index.js")(function(e, os) {
        return console.log(e || JSON.stringify(os));
});

same = false
```

After:
```
==== Input ====
require('./index.js')(function (e, os) {
  if (e) return console.log(e)
  return console.log(JSON.stringify(os))
})

==== First Minification ====
require("./index.js")(function(e, os) {
        return console.log(e || JSON.stringify(os));
});

==== Second Minification ====
require("./index.js")(function(e, os) {
        return console.log(e || JSON.stringify(os));
});

same = true
```
2025-01-11 01:12:09 +00:00
..
ast_passes fix(minifier): correctly set self.changed when minimizing if stmts (#8420) 2025-01-11 01:12:09 +00:00
ecmascript refactor(ast)!: change 'raw' from &str to Option<Atom> (#7547) 2024-12-05 00:34:45 +00:00
mangler fix(mangler): keep exported symbols for top_level: true (#7927) 2025-01-10 15:14:30 +08:00
mod.rs fix(minifier): correctly set self.changed when minimizing if stmts (#8420) 2025-01-11 01:12:09 +00:00