File tree 1 file changed +5
-5
lines changed
crates/oxc_transformer/src/common
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1119,13 +1119,13 @@ impl<'a> ArrowFunctionConverter<'a> {
1119
1119
}
1120
1120
1121
1121
/// Visitor for inserting `this` after `super` in constructor body.
1122
- struct ConstructorBodyThisAfterSuperInserter < ' a , ' arrow > {
1123
- this_var_binding : & ' arrow BoundIdentifier < ' a > ,
1124
- ctx : & ' arrow mut TraverseCtx < ' a > ,
1122
+ struct ConstructorBodyThisAfterSuperInserter < ' a , ' v > {
1123
+ this_var_binding : & ' v BoundIdentifier < ' a > ,
1124
+ ctx : & ' v mut TraverseCtx < ' a > ,
1125
1125
}
1126
1126
1127
- impl < ' a , ' b > ConstructorBodyThisAfterSuperInserter < ' a , ' b > {
1128
- fn new ( this_var_binding : & ' b BoundIdentifier < ' a > , ctx : & ' b mut TraverseCtx < ' a > ) -> Self {
1127
+ impl < ' a , ' v > ConstructorBodyThisAfterSuperInserter < ' a , ' v > {
1128
+ fn new ( this_var_binding : & ' v BoundIdentifier < ' a > , ctx : & ' v mut TraverseCtx < ' a > ) -> Self {
1129
1129
Self { this_var_binding, ctx }
1130
1130
}
1131
1131
You can’t perform that action at this time.
0 commit comments