From 1104e053b71be81d37ec2549601698298516db89 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Fri, 24 Jan 2025 04:14:00 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- crates/oxc_transformer/src/decorator/legacy_decorator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_transformer/src/decorator/legacy_decorator.rs b/crates/oxc_transformer/src/decorator/legacy_decorator.rs index b81fedd8fb48a4..e44224b9f5d611 100644 --- a/crates/oxc_transformer/src/decorator/legacy_decorator.rs +++ b/crates/oxc_transformer/src/decorator/legacy_decorator.rs @@ -54,7 +54,7 @@ impl<'a> LegacyDecorator<'a, '_> { ) { let Statement::ExportDefaultDeclaration(export) = stmt else { unreachable!() }; let ExportDefaultDeclarationKind::ClassDeclaration(class) = &mut export.declaration else { - return + return; }; let Some((class_binding, new_stmt)) = self.transform_class_impl(class, ctx) else { return };