* feat: materialize class features * chore: move testcases to es2022 * chore: update test fixtures * chore: remove classPr\w+ from options.json * chore: remove empty options.json * update flow test allowlist * update typescript allowlist
7 lines
60 B
JavaScript
7 lines
60 B
JavaScript
class C {
|
|
#x = 1;
|
|
m() {
|
|
const {#x: x} = this;
|
|
}
|
|
}
|