diff --git a/crates/oxc_transformer/src/es2022/class_properties/private.rs b/crates/oxc_transformer/src/es2022/class_properties/private.rs index 0dbfae74f62d03..c34e7e96b498d8 100644 --- a/crates/oxc_transformer/src/es2022/class_properties/private.rs +++ b/crates/oxc_transformer/src/es2022/class_properties/private.rs @@ -16,7 +16,7 @@ use crate::{common::helper_loader::Helper, TransformCtx}; use super::{ private_props::ResolvedPrivateProp, utils::{ - assert_expr_neither_parenthesis_nor_typescript_syntax, create_assignment, + assert_expr_is_not_parenthesis_or_typescript_syntax, create_assignment, create_underscore_ident_name, }, ClassProperties, @@ -1019,7 +1019,7 @@ impl<'a, 'ctx> ClassProperties<'a, 'ctx> { self.transform_call_expression_of_chain_expression(call, ctx) } _ => { - assert_expr_neither_parenthesis_nor_typescript_syntax(expr, &self.ctx.source_path); + assert_expr_is_not_parenthesis_or_typescript_syntax(expr, &self.ctx.source_path); None } } @@ -1611,7 +1611,7 @@ impl<'a, 'ctx> ClassProperties<'a, 'ctx> { object: Expression<'a>, ctx: &mut TraverseCtx<'a>, ) -> (Expression<'a>, Expression<'a>) { - assert_expr_neither_parenthesis_nor_typescript_syntax(&object, &self.ctx.source_path); + assert_expr_is_not_parenthesis_or_typescript_syntax(&object, &self.ctx.source_path); self.ctx.duplicate_expression(object, false, ctx) } @@ -1630,7 +1630,7 @@ impl<'a, 'ctx> ClassProperties<'a, 'ctx> { object: Expression<'a>, ctx: &mut TraverseCtx<'a>, ) -> (Expression<'a>, Expression<'a>, Expression<'a>) { - assert_expr_neither_parenthesis_nor_typescript_syntax(&object, &self.ctx.source_path); + assert_expr_is_not_parenthesis_or_typescript_syntax(&object, &self.ctx.source_path); self.ctx.duplicate_expression_twice(object, false, ctx) } diff --git a/crates/oxc_transformer/src/es2022/class_properties/utils.rs b/crates/oxc_transformer/src/es2022/class_properties/utils.rs index 082472d397ffdd..49b8819947137f 100644 --- a/crates/oxc_transformer/src/es2022/class_properties/utils.rs +++ b/crates/oxc_transformer/src/es2022/class_properties/utils.rs @@ -56,10 +56,13 @@ pub(super) fn create_underscore_ident_name<'a>(ctx: &mut TraverseCtx<'a>) -> Ide ctx.ast.identifier_name(SPAN, Atom::from("_")) } +/// Debug assert that an `Expression` is not `ParenthesizedExpression` or TS syntax +/// (e.g. `TSAsExpression`). +// // `#[inline(always)]` because this is a no-op in release mode #[expect(clippy::inline_always)] #[inline(always)] -pub(super) fn assert_expr_neither_parenthesis_nor_typescript_syntax( +pub(super) fn assert_expr_is_not_parenthesis_or_typescript_syntax( expr: &Expression, path: &PathBuf, ) {