mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-18 17:27:54 -05:00
Now it turns out that we don't support Closure's property declaration
style, which doesn't require assignment in the constructor:
```js
class C {
constructor() {
/** @type {number} */
this.n
}
}
```
This means that we still miss basically all the properties of class.
Also the 'conflicting declarations' message still mentions absolute
paths :(