1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Experimental component authoring owner: derive parsing, semantic modeling, // and expansion for builder-centric Maud components. mod attrs; mod diagnostic; mod expand; mod field; mod input; mod model; use proc_macro::TokenStream; pub(crate) use input::Input; pub(crate) fn expand(input: Input) -> TokenStream { expand::derive(model::Component::from_input(input)) }