Struct moore_vhdl::hir::IfStmt [] [src]

pub struct IfStmt {
    pub branches: Vec<(ExprRef, Vec<SeqStmtRef>)>,
    pub otherwise: Option<Vec<SeqStmtRef>>,
}

An if statement.

See IEEE 1076-2008 section 10.8.

Fields

The condition and statements of each branch.

The optional else branch.

Trait Implementations

impl Debug for IfStmt
[src]

[src]

Formats the value using the given formatter.