mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
16 lines
271 B
JavaScript
16 lines
271 B
JavaScript
class C extends Q {
|
|
constructor(arg) {
|
|
/**
|
|
* Something.
|
|
* @type {string | undefined}
|
|
*/
|
|
this.x = this.x; // OK - documentation
|
|
|
|
this.y = this.y; // NOT OK
|
|
|
|
this.arg = this.arg; // NOT OK
|
|
}
|
|
}
|
|
|
|
// semmle-extractor-options: --experimental
|