@@ -1435,7 +1435,7 @@ namespace ts {
1435
1435
node . transformFlags = propagateChildFlags ( body ) | TransformFlags . ContainsClassFields ;
1436
1436
1437
1437
// The following properties are used only to report grammar errors
1438
- node . _decorators = undefined ;
1438
+ node . illegalDecorators = undefined ;
1439
1439
node . modifiers = undefined ;
1440
1440
return node ;
1441
1441
}
@@ -1452,7 +1452,7 @@ namespace ts {
1452
1452
1453
1453
function finishUpdateClassStaticBlockDeclaration ( updated : Mutable < ClassStaticBlockDeclaration > , original : ClassStaticBlockDeclaration ) {
1454
1454
if ( updated !== original ) {
1455
- updated . _decorators = original . _decorators ;
1455
+ updated . illegalDecorators = original . illegalDecorators ;
1456
1456
updated . modifiers = original . modifiers ;
1457
1457
}
1458
1458
return update ( updated , original ) ;
@@ -1476,7 +1476,7 @@ namespace ts {
1476
1476
node . transformFlags |= TransformFlags . ContainsES2015 ;
1477
1477
1478
1478
// The following properties are used only to report grammar errors
1479
- node . _decorators = undefined ;
1479
+ node . illegalDecorators = undefined ;
1480
1480
node . typeParameters = undefined ;
1481
1481
node . type = undefined ;
1482
1482
return node ;
@@ -1498,7 +1498,7 @@ namespace ts {
1498
1498
1499
1499
function finishUpdateConstructorDeclaration ( updated : Mutable < ConstructorDeclaration > , original : ConstructorDeclaration ) {
1500
1500
if ( updated !== original ) {
1501
- updated . _decorators = original . _decorators ;
1501
+ updated . illegalDecorators = original . illegalDecorators ;
1502
1502
updated . typeParameters = original . typeParameters ;
1503
1503
updated . type = original . type ;
1504
1504
}
@@ -3657,7 +3657,7 @@ namespace ts {
3657
3657
}
3658
3658
3659
3659
// The following properties are used only to report grammar errors
3660
- node . _decorators = undefined ;
3660
+ node . illegalDecorators = undefined ;
3661
3661
return node ;
3662
3662
}
3663
3663
@@ -3686,7 +3686,7 @@ namespace ts {
3686
3686
function finishUpdateFunctionDeclaration ( updated : Mutable < FunctionDeclaration > , original : FunctionDeclaration ) {
3687
3687
if ( updated !== original ) {
3688
3688
// copy children used only for error reporting
3689
- updated . _decorators = original . _decorators ;
3689
+ updated . illegalDecorators = original . illegalDecorators ;
3690
3690
}
3691
3691
return finishUpdateBaseSignatureDeclaration ( updated , original ) ;
3692
3692
}
@@ -3756,7 +3756,7 @@ namespace ts {
3756
3756
node . transformFlags = TransformFlags . ContainsTypeScript ;
3757
3757
3758
3758
// The following properties are used only to report grammar errors
3759
- node . _decorators = undefined ;
3759
+ node . illegalDecorators = undefined ;
3760
3760
return node ;
3761
3761
}
3762
3762
@@ -3780,7 +3780,7 @@ namespace ts {
3780
3780
3781
3781
function finishUpdateInterfaceDeclaration ( updated : Mutable < InterfaceDeclaration > , original : InterfaceDeclaration ) {
3782
3782
if ( updated !== original ) {
3783
- updated . _decorators = original . _decorators ;
3783
+ updated . illegalDecorators = original . illegalDecorators ;
3784
3784
}
3785
3785
return update ( updated , original ) ;
3786
3786
}
@@ -3802,7 +3802,7 @@ namespace ts {
3802
3802
node . transformFlags = TransformFlags . ContainsTypeScript ;
3803
3803
3804
3804
// The following properties are used only to report grammar errors
3805
- node . _decorators = undefined ;
3805
+ node . illegalDecorators = undefined ;
3806
3806
return node ;
3807
3807
}
3808
3808
@@ -3824,7 +3824,7 @@ namespace ts {
3824
3824
3825
3825
function finishUpdateTypeAliasDeclaration ( updated : Mutable < TypeAliasDeclaration > , original : TypeAliasDeclaration ) {
3826
3826
if ( updated !== original ) {
3827
- updated . _decorators = original . _decorators ;
3827
+ updated . illegalDecorators = original . illegalDecorators ;
3828
3828
}
3829
3829
return update ( updated , original ) ;
3830
3830
}
@@ -3847,7 +3847,7 @@ namespace ts {
3847
3847
node . transformFlags &= ~ TransformFlags . ContainsPossibleTopLevelAwait ; // Enum declarations cannot contain `await`
3848
3848
3849
3849
// The following properties are used only to report grammar errors
3850
- node . _decorators = undefined ;
3850
+ node . illegalDecorators = undefined ;
3851
3851
return node ;
3852
3852
}
3853
3853
@@ -3866,7 +3866,7 @@ namespace ts {
3866
3866
3867
3867
function finishUpdateEnumDeclaration ( updated : Mutable < EnumDeclaration > , original : EnumDeclaration ) {
3868
3868
if ( updated !== original ) {
3869
- updated . _decorators = original . _decorators ;
3869
+ updated . illegalDecorators = original . illegalDecorators ;
3870
3870
}
3871
3871
return update ( updated , original ) ;
3872
3872
}
@@ -3896,7 +3896,7 @@ namespace ts {
3896
3896
node . transformFlags &= ~ TransformFlags . ContainsPossibleTopLevelAwait ; // Module declarations cannot contain `await`.
3897
3897
3898
3898
// The following properties are used only to report grammar errors
3899
- node . _decorators = undefined ;
3899
+ node . illegalDecorators = undefined ;
3900
3900
return node ;
3901
3901
}
3902
3902
@@ -3916,7 +3916,7 @@ namespace ts {
3916
3916
3917
3917
function finishUpdateModuleDeclaration ( updated : Mutable < ModuleDeclaration > , original : ModuleDeclaration ) {
3918
3918
if ( updated !== original ) {
3919
- updated . _decorators = original . _decorators ;
3919
+ updated . illegalDecorators = original . illegalDecorators ;
3920
3920
}
3921
3921
return update ( updated , original ) ;
3922
3922
}
@@ -3961,7 +3961,7 @@ namespace ts {
3961
3961
node . transformFlags = TransformFlags . ContainsTypeScript ;
3962
3962
3963
3963
// The following properties are used only to report grammar errors
3964
- node . _decorators = undefined ;
3964
+ node . illegalDecorators = undefined ;
3965
3965
node . modifiers = undefined ;
3966
3966
return node ;
3967
3967
}
@@ -3975,7 +3975,7 @@ namespace ts {
3975
3975
3976
3976
function finishUpdateNamespaceExportDeclaration ( updated : Mutable < NamespaceExportDeclaration > , original : NamespaceExportDeclaration ) {
3977
3977
if ( updated !== original ) {
3978
- updated . _decorators = original . _decorators ;
3978
+ updated . illegalDecorators = original . illegalDecorators ;
3979
3979
updated . modifiers = original . modifiers ;
3980
3980
}
3981
3981
return update ( updated , original ) ;
@@ -4000,7 +4000,7 @@ namespace ts {
4000
4000
node . transformFlags &= ~ TransformFlags . ContainsPossibleTopLevelAwait ; // Import= declaration is always parsed in an Await context
4001
4001
4002
4002
// The following properties are used only to report grammar errors
4003
- node . _decorators = undefined ;
4003
+ node . illegalDecorators = undefined ;
4004
4004
return node ;
4005
4005
}
4006
4006
@@ -4022,7 +4022,7 @@ namespace ts {
4022
4022
4023
4023
function finishUpdateImportEqualsDeclaration ( updated : Mutable < ImportEqualsDeclaration > , original : ImportEqualsDeclaration ) {
4024
4024
if ( updated !== original ) {
4025
- updated . _decorators = original . _decorators ;
4025
+ updated . illegalDecorators = original . illegalDecorators ;
4026
4026
}
4027
4027
return update ( updated , original ) ;
4028
4028
}
@@ -4045,7 +4045,7 @@ namespace ts {
4045
4045
node . transformFlags &= ~ TransformFlags . ContainsPossibleTopLevelAwait ; // always parsed in an Await context
4046
4046
4047
4047
// The following properties are used only to report grammar errors
4048
- node . _decorators = undefined ;
4048
+ node . illegalDecorators = undefined ;
4049
4049
return node ;
4050
4050
}
4051
4051
@@ -4067,7 +4067,7 @@ namespace ts {
4067
4067
4068
4068
function finishUpdateImportDeclaration ( updated : Mutable < ImportDeclaration > , original : ImportDeclaration ) {
4069
4069
if ( updated !== original ) {
4070
- updated . _decorators = original . _decorators ;
4070
+ updated . illegalDecorators = original . illegalDecorators ;
4071
4071
}
4072
4072
return update ( updated , original ) ;
4073
4073
}
@@ -4235,7 +4235,7 @@ namespace ts {
4235
4235
node . transformFlags &= ~ TransformFlags . ContainsPossibleTopLevelAwait ; // always parsed in an Await context
4236
4236
4237
4237
// The following properties are used only to report grammar errors
4238
- node . _decorators = undefined ;
4238
+ node . illegalDecorators = undefined ;
4239
4239
return node ;
4240
4240
}
4241
4241
@@ -4253,7 +4253,7 @@ namespace ts {
4253
4253
4254
4254
function finishUpdateExportAssignment ( updated : Mutable < ExportAssignment > , original : ExportAssignment ) {
4255
4255
if ( updated !== original ) {
4256
- updated . _decorators = original . _decorators ;
4256
+ updated . illegalDecorators = original . illegalDecorators ;
4257
4257
}
4258
4258
return update ( updated , original ) ;
4259
4259
}
@@ -4279,7 +4279,7 @@ namespace ts {
4279
4279
node . transformFlags &= ~ TransformFlags . ContainsPossibleTopLevelAwait ; // always parsed in an Await context
4280
4280
4281
4281
// The following properties are used only to report grammar errors
4282
- node . _decorators = undefined ;
4282
+ node . illegalDecorators = undefined ;
4283
4283
return node ;
4284
4284
}
4285
4285
@@ -4303,7 +4303,7 @@ namespace ts {
4303
4303
4304
4304
function finishUpdateExportDeclaration ( updated : Mutable < ExportDeclaration > , original : ExportDeclaration ) {
4305
4305
if ( updated !== original ) {
4306
- updated . _decorators = original . _decorators ;
4306
+ updated . illegalDecorators = original . illegalDecorators ;
4307
4307
}
4308
4308
return update ( updated , original ) ;
4309
4309
}
@@ -5162,7 +5162,7 @@ namespace ts {
5162
5162
propagateChildFlags ( node . initializer ) ;
5163
5163
5164
5164
// The following properties are used only to report grammar errors
5165
- node . _decorators = undefined ;
5165
+ node . illegalDecorators = undefined ;
5166
5166
node . modifiers = undefined ;
5167
5167
node . questionToken = undefined ;
5168
5168
node . exclamationToken = undefined ;
@@ -5180,7 +5180,7 @@ namespace ts {
5180
5180
function finishUpdatePropertyAssignment ( updated : Mutable < PropertyAssignment > , original : PropertyAssignment ) {
5181
5181
// copy children used only for error reporting
5182
5182
if ( updated !== original ) {
5183
- updated . _decorators = original . _decorators ;
5183
+ updated . illegalDecorators = original . illegalDecorators ;
5184
5184
updated . modifiers = original . modifiers ;
5185
5185
updated . questionToken = original . questionToken ;
5186
5186
updated . exclamationToken = original . exclamationToken ;
@@ -5202,7 +5202,7 @@ namespace ts {
5202
5202
5203
5203
// The following properties are used only to report grammar errors
5204
5204
node . equalsToken = undefined ;
5205
- node . _decorators = undefined ;
5205
+ node . illegalDecorators = undefined ;
5206
5206
node . modifiers = undefined ;
5207
5207
node . questionToken = undefined ;
5208
5208
node . exclamationToken = undefined ;
@@ -5221,7 +5221,7 @@ namespace ts {
5221
5221
if ( updated !== original ) {
5222
5222
// copy children used only for error reporting
5223
5223
updated . equalsToken = original . equalsToken ;
5224
- updated . _decorators = original . _decorators ;
5224
+ updated . illegalDecorators = original . illegalDecorators ;
5225
5225
updated . modifiers = original . modifiers ;
5226
5226
updated . questionToken = original . questionToken ;
5227
5227
updated . exclamationToken = original . exclamationToken ;
0 commit comments