@@ -200,7 +200,6 @@ function deserializeIdentifierName(pos) {
200200 } ) ;
201201 node . decorators = [ ] ;
202202 node . optional = false ;
203- node . typeAnnotation = null ;
204203 parent = previousParent ;
205204 return node ;
206205}
@@ -223,7 +222,6 @@ function deserializeIdentifierReference(pos) {
223222 } ) ;
224223 node . decorators = [ ] ;
225224 node . optional = false ;
226- node . typeAnnotation = null ;
227225 parent = previousParent ;
228226 return node ;
229227}
@@ -246,7 +244,6 @@ function deserializeBindingIdentifier(pos) {
246244 } ) ;
247245 node . decorators = [ ] ;
248246 node . optional = false ;
249- node . typeAnnotation = null ;
250247 parent = previousParent ;
251248 return node ;
252249}
@@ -269,7 +266,6 @@ function deserializeLabelIdentifier(pos) {
269266 } ) ;
270267 node . decorators = [ ] ;
271268 node . optional = false ;
272- node . typeAnnotation = null ;
273269 parent = previousParent ;
274270 return node ;
275271}
@@ -1107,7 +1103,6 @@ function deserializeArrayAssignmentTarget(pos) {
11071103 node . decorators = [ ] ;
11081104 node . elements = elements ;
11091105 node . optional = false ;
1110- node . typeAnnotation = null ;
11111106 parent = previousParent ;
11121107 return node ;
11131108}
@@ -1134,7 +1129,6 @@ function deserializeObjectAssignmentTarget(pos) {
11341129 node . decorators = [ ] ;
11351130 node . properties = properties ;
11361131 node . optional = false ;
1137- node . typeAnnotation = null ;
11381132 parent = previousParent ;
11391133 return node ;
11401134}
@@ -1159,8 +1153,6 @@ function deserializeAssignmentTargetRest(pos) {
11591153 node . decorators = [ ] ;
11601154 node . argument = deserializeAssignmentTarget ( pos + 8 ) ;
11611155 node . optional = false ;
1162- node . typeAnnotation = null ;
1163- node . value = null ;
11641156 parent = previousParent ;
11651157 return node ;
11661158}
@@ -1215,7 +1207,6 @@ function deserializeAssignmentTargetWithDefault(pos) {
12151207 node . left = deserializeAssignmentTarget ( pos + 8 ) ;
12161208 node . right = deserializeExpression ( pos + 24 ) ;
12171209 node . optional = false ;
1218- node . typeAnnotation = null ;
12191210 parent = previousParent ;
12201211 return node ;
12211212}
@@ -1645,7 +1636,6 @@ function deserializeExpressionStatement(pos) {
16451636 parent,
16461637 } ) ;
16471638 node . expression = deserializeExpression ( pos + 8 ) ;
1648- node . directive = null ;
16491639 parent = previousParent ;
16501640 return node ;
16511641}
@@ -2164,7 +2154,6 @@ function deserializeAssignmentPattern(pos) {
21642154 node . left = deserializeBindingPattern ( pos + 8 ) ;
21652155 node . right = deserializeExpression ( pos + 40 ) ;
21662156 node . optional = false ;
2167- node . typeAnnotation = null ;
21682157 parent = previousParent ;
21692158 return node ;
21702159}
@@ -2191,7 +2180,6 @@ function deserializeObjectPattern(pos) {
21912180 node . decorators = [ ] ;
21922181 node . properties = properties ;
21932182 node . optional = false ;
2194- node . typeAnnotation = null ;
21952183 parent = previousParent ;
21962184 return node ;
21972185}
@@ -2246,7 +2234,6 @@ function deserializeArrayPattern(pos) {
22462234 node . decorators = [ ] ;
22472235 node . elements = elements ;
22482236 node . optional = false ;
2249- node . typeAnnotation = null ;
22502237 parent = previousParent ;
22512238 return node ;
22522239}
@@ -2271,8 +2258,6 @@ function deserializeBindingRestElement(pos) {
22712258 node . decorators = [ ] ;
22722259 node . argument = deserializeBindingPattern ( pos + 8 ) ;
22732260 node . optional = false ;
2274- node . typeAnnotation = null ;
2275- node . value = null ;
22762261 parent = previousParent ;
22772262 return node ;
22782263}
@@ -2442,7 +2427,6 @@ function deserializeArrowFunctionExpression(pos) {
24422427 node . params = deserializeBoxFormalParameters ( pos + 16 ) ;
24432428 node . returnType = deserializeOptionBoxTSTypeAnnotation ( pos + 24 ) ;
24442429 node . body = body ;
2445- node . id = null ;
24462430 node . generator = false ;
24472431 parent = previousParent ;
24482432 return node ;
@@ -3141,7 +3125,6 @@ function deserializeNullLiteral(pos) {
31413125 range : [ start , end ] ,
31423126 parent,
31433127 } ) ;
3144- node . value = null ;
31453128 node . raw = start === 0 && end === 0 ? null : 'null' ;
31463129 parent = previousParent ;
31473130 return node ;
@@ -4733,7 +4716,6 @@ function deserializeTSPropertySignature(pos) {
47334716 } ) ;
47344717 node . key = deserializePropertyKey ( pos + 8 ) ;
47354718 node . typeAnnotation = deserializeOptionBoxTSTypeAnnotation ( pos + 24 ) ;
4736- node . accessibility = null ;
47374719 node . static = false ;
47384720 parent = previousParent ;
47394721 return node ;
@@ -4775,7 +4757,6 @@ function deserializeTSIndexSignature(pos) {
47754757 } ) ;
47764758 node . parameters = deserializeVecTSIndexSignatureName ( pos + 8 ) ;
47774759 node . typeAnnotation = deserializeBoxTSTypeAnnotation ( pos + 32 ) ;
4778- node . accessibility = null ;
47794760 parent = previousParent ;
47804761 return node ;
47814762}
@@ -4847,7 +4828,6 @@ function deserializeTSMethodSignature(pos) {
48474828 node . typeParameters = deserializeOptionBoxTSTypeParameterDeclaration ( pos + 24 ) ;
48484829 node . params = params ;
48494830 node . returnType = deserializeOptionBoxTSTypeAnnotation ( pos + 48 ) ;
4850- node . accessibility = null ;
48514831 node . readonly = false ;
48524832 node . static = false ;
48534833 parent = previousParent ;
0 commit comments