public final class ApplicationExpression extends ExpressionBase
| Constructor and Description |
|---|
ApplicationExpression(Expression fun,
Expression[] args)
construct application of fun to args
|
| Modifier and Type | Method and Description |
|---|---|
AST |
accept(ASTVisitor visitor)
Accept visitor for a visit.
|
Expression[] |
getArguments()
get arguments
|
Expression |
getFunction()
get function/predicate
|
int |
getPriority()
get binding level for printing (lower numbers mean greater binding power)
|
Expression |
instantiate()
return copy of AST with value references instantiated by the substitutions
set in the corresponding declaration identifiers
|
void |
print(java.io.PrintWriter out)
Prints text representation on out (without new line termination).
|
void |
printCore(java.io.PrintWriter out)
Prints text representation on out (without new line termination).
|
printPriorityprintParens, toStringequals, getClass, hashCode, notify, notifyAll, wait, wait, waitprintParens, toStringpublic ApplicationExpression(Expression fun, Expression[] args)
fun - the function/predicateargs - the sequence of argumentspublic int getPriority()
getPriority in interface ExpressiongetPriority in class ExpressionBasepublic Expression getFunction()
public Expression[] getArguments()
public Expression instantiate()
public void printCore(java.io.PrintWriter out)
public void print(java.io.PrintWriter out)
public AST accept(ASTVisitor visitor)
visitor - the visitor who is accepted by this node.