Files
2025-02-28 13:27:28 +01:00

14 lines
228 B
JavaScript

class C extends Q {
constructor(arg) {
/**
* Something.
* @type {string | undefined}
*/
this.x = this.x; // OK - documentation
this.y = this.y; // $ Alert
this.arg = this.arg; // $ Alert
}
}