public abstract class CallExpr extends Expr
CallMethodExpr,
CallStaticExpr| Modifier and Type | Field and Description |
|---|---|
int |
voltaPos |
| Constructor and Description |
|---|
CallExpr(Expr[] params,
MemberRef method,
Type type)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
MemberRef |
method() |
Expr[] |
params() |
cleanupOnly, clone, comparator, copyInto, def, equalsExpr, exprHashCode, isDef, setDef, setType, stmt, typeblock, cleanup, copyInto, hasParent, key, parent, replaceWith, replaceWith, setKey, setParent, setValueNumber, toString, valueNumber, visit, visitChildren, visitForceChildren, visitOnlypublic CallExpr(Expr[] params, MemberRef method, Type type)
params - Parameters to the method. Note that these parameters do not
contain parameter 0, the "this" pointer.method - The method that is to be invoked.type - The type of this expression (i.e. the return type of the
method being called).