https://github.com/tc39/proposal-private-fields-in-in Co-Authored-By: Nicolò Ribaudo <nicolo.ribaudo@gmail.com> Co-Authored-By: Huáng Jùnliàng <jlhwung@gmail.com>
14 lines
131 B
JavaScript
14 lines
131 B
JavaScript
class Foo {
|
|
#foo = 1;
|
|
|
|
test() {
|
|
class Nested {
|
|
test() {
|
|
#foo in this;
|
|
}
|
|
}
|
|
|
|
#foo in this;
|
|
}
|
|
}
|