mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
15 lines
190 B
JavaScript
15 lines
190 B
JavaScript
class C {
|
|
get x() { return 5; }
|
|
|
|
get y() { return 5; }
|
|
set y(value) {}
|
|
|
|
set z(value) {}
|
|
|
|
myMethod() {
|
|
let myX = this.x;
|
|
let myY = this.y;
|
|
let myZ = this.z;
|
|
}
|
|
}
|