From 6a4db24a24c75320d7dc645cdf8a8711d7120fa7 Mon Sep 17 00:00:00 2001 From: Boshen <1430279+Boshen@users.noreply.github.com> Date: Wed, 25 Jun 2025 13:09:31 +0000 Subject: [PATCH] feat(ast): derive `Debug, Clone, Copy` on `MemberExpressionKind` (#11903) --- crates/oxc_ast/src/ast_kind_impl.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/oxc_ast/src/ast_kind_impl.rs b/crates/oxc_ast/src/ast_kind_impl.rs index 3c36f95ba0769..ac7edde2925e6 100644 --- a/crates/oxc_ast/src/ast_kind_impl.rs +++ b/crates/oxc_ast/src/ast_kind_impl.rs @@ -416,6 +416,7 @@ impl AstKind<'_> { /// /// Having a separate enum for this allows us to implement helpful methods that are specific to member expressions, /// such as getting the property name or the object of the member expression. +#[derive(Debug, Clone, Copy)] pub enum MemberExpressionKind<'a> { /// A static member expression, such as `obj.prop`. Static(&'a StaticMemberExpression<'a>),