@@ -6693,6 +6693,7 @@ impl<'a> AstBuilder<'a> {
66936693 /// * `value`: Initialized value in the declaration, if present.
66946694 /// * `computed`: Property was declared with a computed key
66956695 /// * `static`: Property was declared with a `static` modifier
6696+ /// * `override`: Property was declared with a `override` modifier
66966697 /// * `definite`: Property has a `!` after its key.
66976698 /// * `type_annotation`: Type annotation on the property.
66986699 /// * `accessibility`: Accessibility modifier.
@@ -6706,6 +6707,7 @@ impl<'a> AstBuilder<'a> {
67066707 value : Option < Expression < ' a > > ,
67076708 computed : bool ,
67086709 r#static : bool ,
6710+ r#override : bool ,
67096711 definite : bool ,
67106712 type_annotation : T1 ,
67116713 accessibility : Option < TSAccessibility > ,
@@ -6721,6 +6723,7 @@ impl<'a> AstBuilder<'a> {
67216723 value,
67226724 computed,
67236725 r#static,
6726+ r#override,
67246727 definite,
67256728 type_annotation,
67266729 accessibility,
@@ -7250,6 +7253,7 @@ impl<'a> AstBuilder<'a> {
72507253 /// * `value`: Initialized value in the declaration, if present.
72517254 /// * `computed`: Property was declared with a computed key
72527255 /// * `static`: Property was declared with a `static` modifier
7256+ /// * `override`: Property was declared with a `override` modifier
72537257 /// * `definite`: Property has a `!` after its key.
72547258 /// * `type_annotation`: Type annotation on the property.
72557259 /// * `accessibility`: Accessibility modifier.
@@ -7263,6 +7267,7 @@ impl<'a> AstBuilder<'a> {
72637267 value : Option < Expression < ' a > > ,
72647268 computed : bool ,
72657269 r#static : bool ,
7270+ r#override : bool ,
72667271 definite : bool ,
72677272 type_annotation : T1 ,
72687273 accessibility : Option < TSAccessibility > ,
@@ -7278,6 +7283,7 @@ impl<'a> AstBuilder<'a> {
72787283 value,
72797284 computed,
72807285 r#static,
7286+ r#override,
72817287 definite,
72827288 type_annotation : type_annotation. into_in ( self . allocator ) ,
72837289 accessibility,
@@ -7297,6 +7303,7 @@ impl<'a> AstBuilder<'a> {
72977303 /// * `value`: Initialized value in the declaration, if present.
72987304 /// * `computed`: Property was declared with a computed key
72997305 /// * `static`: Property was declared with a `static` modifier
7306+ /// * `override`: Property was declared with a `override` modifier
73007307 /// * `definite`: Property has a `!` after its key.
73017308 /// * `type_annotation`: Type annotation on the property.
73027309 /// * `accessibility`: Accessibility modifier.
@@ -7310,6 +7317,7 @@ impl<'a> AstBuilder<'a> {
73107317 value : Option < Expression < ' a > > ,
73117318 computed : bool ,
73127319 r#static : bool ,
7320+ r#override : bool ,
73137321 definite : bool ,
73147322 type_annotation : T1 ,
73157323 accessibility : Option < TSAccessibility > ,
@@ -7326,6 +7334,7 @@ impl<'a> AstBuilder<'a> {
73267334 value,
73277335 computed,
73287336 r#static,
7337+ r#override,
73297338 definite,
73307339 type_annotation,
73317340 accessibility,
0 commit comments