Files
2020-05-26 22:18:17 +02:00

8 lines
80 B
JavaScript

class Foo {
static #foo() {}
test(other) {
return #foo in other;
}
}