(input: TokenStream)
| 69 | #[doc(hidden)] |
| 70 | #[proc_macro_derive(Parser)] |
| 71 | pub fn parser_derive(input: TokenStream) -> TokenStream { |
| 72 | let input = parse_macro_input!(input as DeriveInput); |
| 73 | internal::parser_expand(input).into() |
| 74 | } |
| 75 | |
| 76 | /// A proc macro used to register a node. `node_register!("NodeType", NodeType)` |
| 77 | #[proc_macro] |
nothing calls this directly
no test coverage detected