mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
0f2937ef83
This commit updates parts of the FW to be ES2022 complaint.
These changes are needed to fix the following problems problems with using properties before they are initialized.
Example
```ts
class Foo {
bar = this.buz;
constructor(private buz: unknown){}
}
```
PR Close #49559