Type Alias IfBranch

Source
pub type IfBranch = IfBranch<Value>;

Aliased Type§

struct IfBranch {
    pub cond: Condition<Value>,
    pub body: Statements<Value>,
}

Fields§

§cond: Condition<Value>§body: Statements<Value>