Add the decoratorsAutoAccessors parser plugin (#13681)
Co-authored-by: Huáng Jùnliàng <jlhwung@gmail.com> Co-authored-by: Nicolò Ribaudo <nicolo.ribaudo@gmail.com>
This commit is contained in:
committed by
Nicolò Ribaudo
parent
dc5f419fa9
commit
3f3ce5f668
@@ -1213,6 +1213,18 @@ interface ClassPrivateProperty <: Node {
|
||||
}
|
||||
```
|
||||
|
||||
## ClassAccessorProperty
|
||||
|
||||
```js
|
||||
interface ClassAccessorProperty <: Node {
|
||||
type: "ClassAccessorProperty";
|
||||
key: Expression | PrivateName;
|
||||
value: Expression;
|
||||
static: boolean;
|
||||
computed: boolean;
|
||||
}
|
||||
```
|
||||
|
||||
## StaticBlock
|
||||
|
||||
```js
|
||||
|
||||
Reference in New Issue
Block a user