Fan

 

class

compiler::SwitchStmt

sys::Obj
  compiler::Node
    compiler::Stmt
      compiler::SwitchStmt

SwitchStmt models a switch and its case and default block

Slots

casesSource

Case[] cases

conditionSource

Expr condition

defaultBlockSource

Block? defaultBlock

isDefiniteAssignSource

override Bool isDefiniteAssign(|Expr -> Bool| f)

Check for definite assignment where the given function returns true for the LHS of an assignment in all code paths.

isExitSource

override Bool isExit()

Overrides compiler::Stmt.isExit

Doc inherited from compiler::Stmt.isExit

Does this statement always cause us to exit the method (or does it cause us to loop forever without a break to the next statement)

isTableswitchSource

Bool isTableswitch

makeSource

new make(Location location, Expr condition)

printSource

override Void print(AstWriter out)

Overrides compiler::Node.print

Doc inherited from compiler::Node.print

Pretty print this node and it's descendants.

walkChildrenSource

override Void walkChildren(Visitor v, VisitDepth depth)