public final class AssignNewStatement extends AssignCallStatement
lvalargs, method| Modifier and Type | Method and Description |
|---|---|
void |
accept(ASTVisitor visitor)
Accept visitor for a visit.
|
static AssignNewStatement |
construct(LeftValue lval,
Name type,
ValueExpression[] args)
Construct a call statement with a result value assigned to a variable.
|
static AssignNewStatement |
construct(LeftValue lval,
Name type,
java.util.Vector<ValueExpression> args)
Construct a call statement with a result value assigned to a variable.
|
accept, acceptChildrengetKind, getMethodSymbol, setMethodSymbolgetAnnotation, getJudgement, setAnnotation, setJudgementgetPosition, setPositionaccept, accept, print, printCore, toString, toStringCoreequals, getClass, hashCode, notify, notifyAll, wait, wait, waitgetPosition, setPositionprint, printCore, toString, toStringCorepublic static AssignNewStatement construct(LeftValue lval, Name type, java.util.Vector<ValueExpression> args)
lval - the left value taking the result (may be null)type - the type nameargs - the type argumentspublic static AssignNewStatement construct(LeftValue lval, Name type, ValueExpression[] args)
lval - the left value taking the result (may be null)type - the type nameargs - the type argumentspublic void accept(ASTVisitor visitor)
accept in interface ASTaccept in class AssignCallStatementvisitor - the visitor who is accepted by this node.