mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
13 lines
282 B
JavaScript
13 lines
282 B
JavaScript
|
var _tmp, _brand_check_foo = new WeakSet();
|
||
|
class Foo {
|
||
|
#foo = (_tmp = 1, _brand_check_foo.add(this), _tmp);
|
||
|
test() {
|
||
|
class Nested {
|
||
|
test() {
|
||
|
_brand_check_foo.has(this);
|
||
|
}
|
||
|
}
|
||
|
_brand_check_foo.has(this);
|
||
|
}
|
||
|
}
|