public final class TupleTerm extends ExpressionBase
| Constructor and Description |
|---|
TupleTerm(Expression[] base)
construct tuple term of base terms
|
| Modifier and Type | Method and Description |
|---|---|
AST |
accept(ASTVisitor visitor)
Accept visitor for a visit.
|
Expression[] |
getBase()
get base expressions
|
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 TupleTerm(Expression[] base)
base - the array of base terms, base.length > 1public int getPriority()
getPriority in interface ExpressiongetPriority in class ExpressionBasepublic Expression[] getBase()
public void printCore(java.io.PrintWriter out)
public void print(java.io.PrintWriter out)
public Expression instantiate()
public AST accept(ASTVisitor visitor)
visitor - the visitor who is accepted by this node.