20 lines
249 B
JavaScript

var _temp;
var _fooBrandCheck = new WeakSet();
class Foo {
#foo = (_temp = 1, _fooBrandCheck.add(this), _temp);
test() {
class Nested {
test() {
_fooBrandCheck.has(this);
}
}
_fooBrandCheck.has(this);
}
}