mirror of
https://github.com/oven-sh/bun
synced 2026-02-15 05:12:29 +00:00
Input:
```
class Foo {
constructor(public bar: string = "baz") {}
bar: number;
}
```
Output:
```
class Foo {
bar;
constructor(bar = "baz") {
this.bar = bar;
}
baz;
}
```