Fan

 

Slots

breakStmtSource

static StmtId breakStmt := StmtId.make(8, "breakStmt")

continueStmtSource

static StmtId continueStmt := StmtId.make(9, "continueStmt")

exprSource

static StmtId expr := StmtId.make(1, "expr")

forStmtSource

static StmtId forStmt := StmtId.make(6, "forStmt")

fromStrSource

static StmtId? fromStr(Str name, Bool checked := true)

Return the StmtId instance for the specified name. If not a valid name and checked is false return null, otherwise throw ParseErr.

ifStmtSource

static StmtId ifStmt := StmtId.make(3, "ifStmt")

localDefSource

static StmtId localDef := StmtId.make(2, "localDef")

nopSource

static StmtId nop := StmtId.make(0, "nop")

returnStmtSource

static StmtId returnStmt := StmtId.make(4, "returnStmt")

switchStmtSource

static StmtId switchStmt := StmtId.make(11, "switchStmt")

throwStmtSource

static StmtId throwStmt := StmtId.make(5, "throwStmt")

tryStmtSource

static StmtId tryStmt := StmtId.make(10, "tryStmt")

valuesSource

static StmtId[] values := ...

List of StmtId values indexed by ordinal

whileStmtSource

static StmtId whileStmt := StmtId.make(7, "whileStmt")