Skip to content

Commit

Permalink
Cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
simmsb committed Apr 27, 2024
1 parent 82c446e commit 2e11a7f
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions numbat/src/prefix_transformer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,14 @@ impl Transformer {
.map(|(span, attr, arg)| (span, attr, self.transform_expression(arg)))
.collect(),
),
Expression::AccessStruct(full_span, ident_span, expr, attr) => Expression::AccessStruct(
full_span,
ident_span,
Box::new(self.transform_expression(*expr)),
attr,
),
Expression::AccessStruct(full_span, ident_span, expr, attr) => {
Expression::AccessStruct(
full_span,
ident_span,
Box::new(self.transform_expression(*expr)),
attr,
)
}
}
}

Expand Down

0 comments on commit 2e11a7f

Please sign in to comment.