From 432791679f64342b0ada82fe6daef39a734ee23e Mon Sep 17 00:00:00 2001 From: Dunqing Date: Mon, 26 Feb 2024 15:15:19 +0800 Subject: [PATCH] fix(codegen): remove redundant semicolon in PropertyDefinition (#2511) --- crates/oxc_codegen/src/gen.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/oxc_codegen/src/gen.rs b/crates/oxc_codegen/src/gen.rs index c5ab6fe27..9800627cc 100644 --- a/crates/oxc_codegen/src/gen.rs +++ b/crates/oxc_codegen/src/gen.rs @@ -2283,7 +2283,6 @@ impl<'a, const MINIFY: bool> Gen for PropertyDefinition<'a> { p.print_equal(); value.gen_expr(p, Precedence::Assign, Context::default()); } - p.print_semicolon_after_statement(); } }