* [babel 8] Enable ESTree classFeatures by default in @babel/parser * Fix `visitorKeys` * Update tests
9 lines
82 B
JavaScript
9 lines
82 B
JavaScript
class A {
|
|
#foo = "bar";
|
|
static #bar = foo;
|
|
|
|
method() {
|
|
this.#foo;
|
|
}
|
|
}
|