Justin Ridgewell 7459038db8 Add private-property-in-object support (#11372)
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>
2020-05-26 22:18:17 +02:00

16 lines
148 B
JavaScript

class Foo {
#foo = 1;
test() {
class Nested {
#foo = 2;
test() {
#foo in this;
}
}
#foo in this;
}
}