actually remove catchall pattern in eval

This commit is contained in:
Scott Richmond 2024-11-07 19:05:24 -05:00
parent 7819472048
commit fd55604608

View File

@ -159,6 +159,7 @@ pub fn eval<'src, 'a>(
None => Err(LudusError { msg: "No match" }), None => Err(LudusError { msg: "No match" }),
} }
} }
Ast::Placeholder => todo!(),
Ast::Error => todo!(), Ast::Error => todo!(),
Ast::Dict(_) => todo!(), Ast::Dict(_) => todo!(),
Ast::Arguments(_) => todo!(), Ast::Arguments(_) => todo!(),