9 lines
85 B
JavaScript
9 lines
85 B
JavaScript
class Foo {
|
|
static get #foo() {}
|
|
|
|
test(other) {
|
|
return Foo === other;
|
|
}
|
|
|
|
}
|