Skip to content

Commit 9127571

Browse files
committed
refactor(transformer/arrow-functions): rename lifetime (#8319)
Follow-on after #8024. Pure refactor. Rename lifetime to `'v` ("v" for visitor).
1 parent aebe0ea commit 9127571

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

crates/oxc_transformer/src/common/arrow_function_converter.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1119,13 +1119,13 @@ impl<'a> ArrowFunctionConverter<'a> {
11191119
}
11201120

11211121
/// 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>,
11251125
}
11261126

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 {
11291129
Self { this_var_binding, ctx }
11301130
}
11311131

0 commit comments

Comments
 (0)