Files
babel/packages/babel-parser/test/fixtures/es2022/class-properties/computed/input.js
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

10 lines
62 B
JavaScript

class Foo {
[x]
['y']
}
class Foo2 {
[p]
[m] () {}
}