public final class AssignmentStatement extends GoloStatement
| Modifier and Type | Method and Description | 
|---|---|
void | 
accept(GoloIrVisitor visitor)
Accept the visitor. 
 | 
AssignmentStatement | 
as(java.lang.Object expr)
Defines the value to be assigned. 
 | 
AssignmentStatement | 
declaring()  | 
AssignmentStatement | 
declaring(boolean isDeclaring)  | 
ExpressionStatement | 
getExpressionStatement()  | 
LocalReference | 
getLocalReference()  | 
boolean | 
isDeclaring()  | 
AssignmentStatement | 
ofAST(GoloASTNode node)  | 
protected void | 
replaceElement(GoloElement original,
              GoloElement newElement)
Replace a child. 
 | 
AssignmentStatement | 
to(java.lang.Object ref)
Defines the reference to assign to. 
 | 
java.lang.String | 
toString()  | 
void | 
walk(GoloIrVisitor visitor)
Walk the visitor through this node children. 
 | 
cantConvert, cantReplace, cantReplace, doesNotContain, getASTNode, getDocumentation, getLocalReferenceTable, getParentNode, getPositionInSourceCode, hasASTNode, makeParentOf, replaceInParentBy, setASTNode, setParentNodepublic AssignmentStatement ofAST(GoloASTNode node)
ofAST in class GoloElementpublic boolean isDeclaring()
public AssignmentStatement declaring()
public AssignmentStatement declaring(boolean isDeclaring)
public LocalReference getLocalReference()
public AssignmentStatement to(java.lang.Object ref)
public ExpressionStatement getExpressionStatement()
public AssignmentStatement as(java.lang.Object expr)
public java.lang.String toString()
toString in class java.lang.Objectpublic void accept(GoloIrVisitor visitor)
GoloElement
 This method should only call the visitor visitXXXX method.
 The children of this node will be visited by the
 GoloElement.walk(GoloIrVisitor) method.
accept in class GoloElementpublic void walk(GoloIrVisitor visitor)
GoloElementwalk in class GoloElementprotected void replaceElement(GoloElement original, GoloElement newElement)
GoloElement
 Replace original with newElement if original is a child of this node
 and type matches.
replaceElement in class GoloElementoriginal - the original value to replace. Must be a child of this nodenewElement - the element to replace with. Type must match.GoloElement.cantReplace(), 
GoloElement.cantReplace(GoloElement, GoloElement), 
GoloElement.doesNotContain(GoloElement), 
GoloElement.cantConvert(String, Object)