Huáng Jùnliàng ceaab0bae7 Parse class fields and private methods by default (#13175)
* 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
2021-04-28 18:21:31 +02:00

50 lines
381 B
JavaScript

class A1 {
static
a
static
}
class A2 { a }
class A3 { get }
class A4 { set }
class A5 { static }
class A6 { async }
class A7 {
get
*a(){}
}
class A8 {
static
*a(){}
}
class A9 {
async
a(){}
}
class A10 {
static
async
a
}
class A11 { static; }
class A12 {
static = 0;
}
class A13 {
get
['a'](){}
}
class A14 {
static
get
static
(){}
}