LocalDefStmt models a local variable declaration and its optional initialization expression.
Slots
- ctypeSource
-
CType? ctype
- initSource
-
Expr? init
- isCatchVarSource
-
Bool isCatchVar
- isDefiniteAssignSource
-
override Bool isDefiniteAssign(|Expr -> Bool| f)
Overrides compiler::Stmt.isDefiniteAssign
Doc inherited from compiler::Stmt.isDefiniteAssign
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)
- makeSource
- makeCatchVarSource
-
new makeCatchVar(Catch c)
- nameSource
-
Str name
- printSource
-
override Void print(AstWriter out)
Overrides compiler::Node.print
Doc inherited from compiler::Node.print
Pretty print this node and it's descendants.
- printOptSource
- toStrSource
-
override Str toStr()
Overrides sys::Obj.toStr
Doc inherited from sys::Obj.toStr
Return a string representation of this object.
- varSource
-
MethodVar? var
- walkChildrenSource
-
override Void walkChildren(Visitor v, VisitDepth depth)
Overrides compiler::Stmt.walkChildren