cairo_lang_sierra::program

Type Alias BranchTarget

source
pub type BranchTarget = GenBranchTarget<StatementIdx>;

Aliased Type§

enum BranchTarget {
    Fallthrough,
    Statement(StatementIdx),
}

Variants§

§

Fallthrough

Continues a run to the next statement.

§

Statement(StatementIdx)

Continues the run to provided statement.