diff options
author | 2022-02-27 03:37:31 -0800 | |
---|---|---|
committer | 2022-02-27 03:37:31 -0800 | |
commit | d91e8974130735fd43cd9c37d6147fe20f6b3290 (patch) | |
tree | bc0c4d03f3c2a066fe2d3be3c23e81bd3ab7fc7d /src/json_parser.zig | |
parent | 953ddef4820e7a0d6cc2e99a9ece5bc4127b6592 (diff) | |
download | bun-d91e8974130735fd43cd9c37d6147fe20f6b3290.tar.gz bun-d91e8974130735fd43cd9c37d6147fe20f6b3290.tar.zst bun-d91e8974130735fd43cd9c37d6147fe20f6b3290.zip |
[TS Parser] Implement `constructor(private foo)`
Input:
```
class Foo {
constructor(public bar: string = "baz") {}
bar: number;
}
```
Output:
```
class Foo {
bar;
constructor(bar = "baz") {
this.bar = bar;
}
baz;
}
```
Diffstat (limited to 'src/json_parser.zig')
0 files changed, 0 insertions, 0 deletions