(ctx: CtxRef, input: ParseStream)
| 1431 | use super::*; |
| 1432 | |
| 1433 | pub fn parse_def(ctx: CtxRef, input: ParseStream) -> syn::Result<Def> { |
| 1434 | parse_def_source(ctx, input) // only one variant for now |
| 1435 | } |
| 1436 | |
| 1437 | fn parse_def_source(ctx: CtxRef, input: ParseStream) -> syn::Result<Def> { |
| 1438 | let reduce = input.parse::<def::DefSource>()?; |
no test coverage detected