12 lines
161 B
JavaScript
12 lines
161 B
JavaScript
class Foo {
|
|
static #bar = 21;
|
|
static {
|
|
this.foo = this.#bar;
|
|
this.qux1 = this.qux;
|
|
}
|
|
static qux = 21;
|
|
static {
|
|
this.qux2 = this.qux;
|
|
}
|
|
}
|