diff --git a/crates/oxc_ast/src/generated/ast_builder.rs b/crates/oxc_ast/src/generated/ast_builder.rs index 4df9e4ff0..2af319881 100644 --- a/crates/oxc_ast/src/generated/ast_builder.rs +++ b/crates/oxc_ast/src/generated/ast_builder.rs @@ -14,7 +14,6 @@ use crate::ast::*; /// AST builder for creating AST nodes #[derive(Clone, Copy)] -#[non_exhaustive] pub struct AstBuilder<'a> { pub allocator: &'a Allocator, } diff --git a/tasks/ast_tools/src/generators/ast_builder.rs b/tasks/ast_tools/src/generators/ast_builder.rs index f8466623f..a7f6ef27a 100644 --- a/tasks/ast_tools/src/generators/ast_builder.rs +++ b/tasks/ast_tools/src/generators/ast_builder.rs @@ -57,7 +57,6 @@ impl Generator for AstBuilderGenerator { ///@@line_break /// AST builder for creating AST nodes #[derive(Clone, Copy)] - #[non_exhaustive] pub struct AstBuilder<'a> { pub allocator: &'a Allocator, }