oxc/tasks/ast_codegen/src/generators/derive_clone_in.rs
overlookmotel 2c1c7050ea refactor(ast_codegen): use doc comments instead of endl! (#4778)
Similar to #4777.

Use `///@@` instead of `endl!();` in AST codegen to create line breaks.

NB: `///@@` needs to be before an item, not after it.
2024-08-09 08:57:18 +00:00

121 lines
3.2 KiB
Rust

use itertools::Itertools;
use proc_macro2::TokenStream;
use quote::{format_ident, quote};
use syn::Ident;
use crate::{
codegen::LateCtx,
output,
schema::{EnumDef, GetIdent, StructDef, TypeDef},
GeneratorOutput,
};
use super::{define_generator, generated_header, Generator};
define_generator! {
pub struct DeriveCloneIn;
}
impl Generator for DeriveCloneIn {
fn generate(&mut self, ctx: &LateCtx) -> GeneratorOutput {
let impls: Vec<TokenStream> = ctx
.schema()
.into_iter()
.filter(|def| def.generates_derive("CloneIn"))
.map(|def| match &def {
TypeDef::Enum(it) => derive_enum(it),
TypeDef::Struct(it) => derive_struct(it),
})
.collect();
let header = generated_header!();
GeneratorOutput::Stream((
output(crate::AST_CRATE, "derive_clone_in.rs"),
quote! {
#header
use oxc_allocator::{Allocator, CloneIn};
///@@
#[allow(clippy::wildcard_imports)]
use crate::ast::*;
///@@
#(#impls)*
},
))
}
}
fn derive_enum(def: &EnumDef) -> TokenStream {
let ty_ident = def.ident();
let mut used_alloc = false;
let matches = def
.all_variants()
.map(|var| {
let ident = var.ident();
if var.is_unit() {
quote!(Self :: #ident => #ty_ident :: #ident)
} else {
used_alloc = true;
quote!(Self :: #ident(it) => #ty_ident :: #ident(it.clone_in(alloc)))
}
})
.collect_vec();
let alloc_ident = if used_alloc { format_ident!("alloc") } else { format_ident!("_") };
let body = quote! {
match self {
#(#matches),*
}
};
impl_clone_in(&ty_ident, def.has_lifetime, &alloc_ident, &body)
}
fn derive_struct(def: &StructDef) -> TokenStream {
let ty_ident = def.ident();
let (alloc_ident, body) = if def.fields.is_empty() {
(format_ident!("_"), quote!(#ty_ident))
} else {
let fields = def.fields.iter().map(|field| {
let ident = field.ident();
quote!(#ident: self.#ident.clone_in(alloc))
});
(format_ident!("alloc"), quote!(#ty_ident { #(#fields),* }))
};
impl_clone_in(&ty_ident, def.has_lifetime, &alloc_ident, &body)
}
fn impl_clone_in(
ty_ident: &Ident,
has_lifetime: bool,
alloc_ident: &Ident,
body: &TokenStream,
) -> TokenStream {
if has_lifetime {
quote! {
///@@
impl <'old_alloc, 'new_alloc> CloneIn<'new_alloc> for #ty_ident<'old_alloc> {
type Cloned = #ty_ident<'new_alloc>;
fn clone_in(&self, #alloc_ident: &'new_alloc Allocator) -> Self::Cloned {
#body
}
}
}
} else {
quote! {
///@@
impl <'alloc> CloneIn<'alloc> for #ty_ident {
type Cloned = #ty_ident;
fn clone_in(&self, #alloc_ident: &'alloc Allocator) -> Self::Cloned {
#body
}
}
}
}
}