change depend::Expr::Conditional to ConditionalGroup

This commit is contained in:
John Turner
2025-10-28 12:26:30 +00:00
parent b54616a6dd
commit 024b3df691
2 changed files with 14 additions and 8 deletions

View File

@@ -11,8 +11,8 @@ pub enum Conditional {
#[derive(Clone, Debug)]
pub enum Expr {
Atom(Atom),
Conditional(Conditional),
AllOf(Vec<Expr>),
AnyOf(Vec<Expr>),
OneOf(Vec<Expr>),
ConditionalGroup(Conditional, Vec<Expr>),
}