|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.mit.csail.sdg.alloy4compiler.ast.VisitReturn<T>
edu.mit.csail.sdg.alloy4compiler.ast.VisitQuery<T>
public abstract class VisitQuery<T>
This abstract class implements a Query visitor that walks over an Expr and its subnodes.
As soon as one of the node returns a nonnull value,the nonnull value will be propagated to be the output of this visitor.
This default implementation will return null on all the leaf Expr nodes and thus the final answer will be null.
To implement a particular query, you need to extend this class.
Constructor Summary | |
---|---|
VisitQuery()
Constructs a VisitQuery object. |
Method Summary | |
---|---|
T |
visit(ExprBinary x)
Visits an ExprBinary node (A OP B) by calling accept() on A then B. |
T |
visit(ExprCall x)
Visits an ExprCall node F[X1,X2,X3..] by calling accept() on X1, X2, X3... |
T |
visit(ExprConstant x)
Visits an ExprConstant node (this default implementation simply returns null) |
T |
visit(ExprITE x)
Visits an ExprITE node (C => X else Y) by calling accept() on C, X, then Y. |
T |
visit(ExprLet x)
Visits an ExprLet node (let a=x | y) by calling accept() on "a", "x", then "y". |
T |
visit(ExprList x)
Visits an ExprList node F[X1,X2,X3..] by calling accept() on X1, X2, X3... |
T |
visit(ExprQt x)
Visits an ExprQt node (all a,b,c:X1, d,e,f:X2... |
T |
visit(ExprUnary x)
Visits an ExprUnary node (OP X) by calling accept() on X. |
T |
visit(ExprVar x)
Visits a ExprVar node (this default implementation simply returns null) |
T |
visit(Sig.Field x)
Visits a Field node (this default implementation simply returns null) |
T |
visit(Sig x)
Visits a Sig node (this default implementation simply returns null) |
Methods inherited from class edu.mit.csail.sdg.alloy4compiler.ast.VisitReturn |
---|
visit, visit, visit, visitThis |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public VisitQuery()
Method Detail |
---|
public T visit(ExprBinary x) throws Err
visit
in class VisitReturn<T>
Err
public T visit(ExprList x) throws Err
visit
in class VisitReturn<T>
Err
public T visit(ExprCall x) throws Err
visit
in class VisitReturn<T>
Err
public T visit(ExprConstant x) throws Err
visit
in class VisitReturn<T>
Err
public T visit(ExprITE x) throws Err
visit
in class VisitReturn<T>
Err
public T visit(ExprLet x) throws Err
visit
in class VisitReturn<T>
Err
public T visit(ExprQt x) throws Err
visit
in class VisitReturn<T>
Err
public T visit(ExprUnary x) throws Err
visit
in class VisitReturn<T>
Err
public T visit(ExprVar x) throws Err
visit
in class VisitReturn<T>
Err
public T visit(Sig x) throws Err
visit
in class VisitReturn<T>
Err
public T visit(Sig.Field x) throws Err
visit
in class VisitReturn<T>
Err
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |