15 lines
180 B
JavaScript

var _FooBrandCheck = new WeakSet();
class Foo {
constructor() {
_FooBrandCheck.add(this);
}
get #foo() {}
test(other) {
return _FooBrandCheck.has(other);
}
}