@@ -96,6 +96,13 @@ module.exports = {
96
96
ThisExpression : "ThisExpression" ,
97
97
ThrowStatement : "ThrowStatement" ,
98
98
TryStatement : "TryStatement" ,
99
+ UnaryExpression : "UnaryExpression" ,
100
+ UpdateExpression : "UpdateExpression" ,
101
+ VariableDeclaration : "VariableDeclaration" ,
102
+ VariableDeclarator : "VariableDeclarator" ,
103
+ WhileStatement : "WhileStatement" ,
104
+ WithStatement : "WithStatement" ,
105
+ YieldExpression : "YieldExpression" ,
99
106
/**
100
107
* TS-prefixed nodes
101
108
*/
@@ -150,12 +157,5 @@ module.exports = {
150
157
TSTypeReference : "TSTypeReference" ,
151
158
TSUnionType : "TSUnionType" ,
152
159
TSUndefinedKeyword : "TSUndefinedKeyword" ,
153
- TSVoidKeyword : "TSVoidKeyword" ,
154
- UnaryExpression : "UnaryExpression" ,
155
- UpdateExpression : "UpdateExpression" ,
156
- VariableDeclaration : "VariableDeclaration" ,
157
- VariableDeclarator : "VariableDeclarator" ,
158
- WhileStatement : "WhileStatement" ,
159
- WithStatement : "WithStatement" ,
160
- YieldExpression : "YieldExpression"
160
+ TSVoidKeyword : "TSVoidKeyword"
161
161
} ;
0 commit comments