public final class ReturnStatement extends GoloStatement<ReturnStatement>
| Modifier and Type | Method and Description |
|---|---|
void |
accept(GoloIrVisitor visitor)
Accept the visitor.
|
java.util.List<GoloElement<?>> |
children()
Returns a list of all the direct children of this node.
|
static ReturnStatement |
empty()
Creates a
void return statement. |
GoloStatement<?> |
expression() |
boolean |
isReturningVoid() |
boolean |
isSynthetic() |
static ReturnStatement |
of(java.lang.Object value)
Creates a
return statement. |
protected void |
replaceElement(GoloElement<?> original,
GoloElement<?> newElement)
Replace a child.
|
ReturnStatement |
returningVoid() |
protected ReturnStatement |
self() |
ReturnStatement |
synthetic() |
java.lang.String |
toString() |
ancestor, ancestor, ancestorOfType, cantConvert, cantReplace, cantReplace, children, children, descendants, descendants, descendants, documentation, documentation, doesNotContain, enclosingModule, getLocalReferenceTable, hasParent, hasPosition, makeParentOf, metadata, metadata, next, next, next, ofAST, parent, positionInSourceCode, positionInSourceCode, previous, previous, previous, replaceInParentBy, walkpublic static ReturnStatement of(java.lang.Object value)
return statement.value - an object interpreted as an ExpressionStatementExpressionStatement.of(Object)public static ReturnStatement empty()
void return statement.protected ReturnStatement self()
self in class GoloElement<ReturnStatement>public GoloStatement<?> expression()
public boolean isReturningVoid()
public ReturnStatement returningVoid()
public ReturnStatement synthetic()
public boolean isSynthetic()
public java.lang.String toString()
toString in class java.lang.Objectpublic void accept(GoloIrVisitor visitor)
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 GoloElement<ReturnStatement>public java.util.List<GoloElement<?>> children()
children in class GoloElement<ReturnStatement>protected void replaceElement(GoloElement<?> original, GoloElement<?> newElement)
Replace original with newElement if original is a child of this node
and type matches.
replaceElement in class GoloElement<ReturnStatement>original - 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)