Struct phile::sqir::BranchArm
[−]
[src]
pub struct BranchArm { pub pattern: RcExpr, pub value: RcExpr, }
A match-value pair, representing one possible direction of control flow.
Fields
pattern: RcExpr
The pattern that may match the discriminant.
value: RcExpr
The expression to evaluated when pattern
matches.