| java.lang.Object gnu.expr.Expression gnu.expr.ApplyExp
ApplyExp | public class ApplyExp extends Expression (Code) | | This class is used to represent "combination" or "application".
A function and arguments are evaluated, and then the function applied.
author: Per Bothner |
nextCall | public ApplyExp nextCall(Code) | | The next ApplyExp in ((ReferenceExp)func).binding.firstCall list.
|
special | boolean special(Code) | | true if this is a special (super) call.
|
tailCall | boolean tailCall(Code) | | |
getArgCount | final public int getArgCount()(Code) | | |
isTailCall | final public boolean isTailCall()(Code) | | |
setTailCall | final public void setTailCall(boolean tailCall)(Code) | | |
|
|