* 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
9 lines
100 B
JavaScript
9 lines
100 B
JavaScript
class Hotel {
|
|
get #evil() {
|
|
return ohNo();
|
|
}
|
|
set #evil(x) {
|
|
return makeEvil(x);
|
|
}
|
|
}
|