mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
14 lines
228 B
JavaScript
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
|
|
}
|
|
}
|