mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
18 lines
203 B
JavaScript
18 lines
203 B
JavaScript
class MyClass {
|
|
static x = 1;
|
|
constructor() {
|
|
this.y = 2;
|
|
}
|
|
static {
|
|
MyClass.z = 3;
|
|
}
|
|
foo() {
|
|
this.t = 4;
|
|
}
|
|
static bar() {
|
|
this.u = 5;
|
|
}
|
|
static {
|
|
this.v = 6;
|
|
}
|
|
} |