tailcall-impl 2.0.4

The procedural macro implementation for the tailcall crate
Documentation
1
2
3
4
5
6
7
8
use syn::Ident;

pub fn helper_ident(fn_name: &Ident) -> Ident {
    Ident::new(
        &format!("__tailcall_build_{}_thunk", fn_name),
        fn_name.span(),
    )
}