Nicolò Ribaudo 2e2d202694
[babel 8] Materialize ESTree's classFeatures option (#13752)
* [babel 8] Enable ESTree classFeatures by default in @babel/parser

* Fix `visitorKeys`

* Update tests
2021-09-22 15:28:10 -04:00

7 lines
76 B
JavaScript

class A {
#foo = "bar";
static isA(obj) {
return #foo in obj;
}
}