oxc/crates/oxc_mangler
overlookmotel e59b5d919d refactor(minifier): dereference SymbolId as soon as possible (#6823)
Style nit. Dereference `&SymbolId` to `SymbolId` as early as possible. `&SymbolId` is 8 bytes, whereas `SymbolId` is 4 bytes.

In simple cases like these, compiler will optimize it anyway, but still I think it's a better pattern to dererence early. In more complicated cases, it will be better for performance, and in my opinion, it makes things clearer if vars called `symbol_id` are always a `SymbolId`, and not sometimes a `&SymbolId`.
2024-10-23 13:03:04 +00:00
..
src refactor(minifier): dereference SymbolId as soon as possible (#6823) 2024-10-23 13:03:04 +00:00
Cargo.toml release(crates): v0.32.0 (#6691) 2024-10-19 23:09:35 +08:00
CHANGELOG.md release(crates): v0.30.0 (#5986) 2024-09-23 11:20:12 +08:00