Ast gen successful, but compile errors.

This commit is contained in:
Jesse Brault 2025-09-23 18:15:09 -05:00
parent c73bb50d6f
commit 2a2936ef02

View File

@ -90,7 +90,7 @@ pub fn make_polymorphic_enum_loop_build_fn(spec: &PolymorphicEnumLoopBuildSpec)
let mut result: Option<#return_type_ident> = None; let mut result: Option<#return_type_ident> = None;
for inner_pair in #pair_ident.into_inner() { for inner_pair in #pair_ident.into_inner() {
match inner_pair.as_rule() { match inner_pair.as_rule() {
#(#match_arms,)*, #(#match_arms,)*
_ => unreachable!() _ => unreachable!()
} }
} }