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>),