Add support for computed class property names (#120) (#121)

This commit is contained in:
Moti Zilberman
2016-09-22 04:24:59 +03:00
committed by Henry Zhu
parent b68918e377
commit 4e1fbd48d5
5 changed files with 314 additions and 2 deletions

View File

@@ -1021,6 +1021,7 @@ interface ClassProperty <: Node {
type: "ClassProperty";
key: Identifier;
value: Expression;
computed: boolean;
}
```