oxc/crates/oxc_codegen
IWANABETHATGUY 1c117eb20d
fix: avoid print extra semicolon after accessor property (#4199)
## Before
```js
export default class Foo { @x @y accessor #aDef = 1 }
```
**output** 
```bash
Original:
export default class Foo { @x @y accessor #aDef = 1 }


Printed:
export default class Foo {
        accessor #aDef=1;;
}

```
2024-07-11 20:16:02 +08:00
..
examples feat(codegen)!: new code gen API (#3740) 2024-06-18 15:50:12 +00:00
src fix: avoid print extra semicolon after accessor property (#4199) 2024-07-11 20:16:02 +08:00
tests fix: avoid print extra semicolon after accessor property (#4199) 2024-07-11 20:16:02 +08:00
Cargo.toml feat(mangler): initialize crate and integrate into minifier (#4197) 2024-07-11 10:35:13 +00:00
CHANGELOG.md Release crates v0.20.0 (#4189) 2024-07-11 11:05:49 +08:00