mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
15 lines
154 B
JavaScript
15 lines
154 B
JavaScript
class C {
|
|
constructor(x) {
|
|
this.x = x;
|
|
}
|
|
|
|
method() {
|
|
this.x;
|
|
let closure = () => this.x;
|
|
}
|
|
|
|
get getter() {
|
|
return this.x;
|
|
}
|
|
}
|