Uses of Class
tip.node.AEqBinop

Packages that use AEqBinop
tip.analysis Provides the analysis utility classes for the TIP ASTs. 
tip.node Provides node classes for representing the TIP ASTs. 
 

Uses of AEqBinop in tip.analysis
 

Methods in tip.analysis with parameters of type AEqBinop
 void ReversedDepthFirstAdapter.caseAEqBinop(AEqBinop node)
          Calls ReversedDepthFirstAdapter.inAEqBinop(AEqBinop), traverses the children of AEqBinop in the reverse order of the order they are defined in the grammar, and finally calls ReversedDepthFirstAdapter.outAEqBinop(AEqBinop).
 void DepthFirstAdapter.caseAEqBinop(AEqBinop node)
          Calls DepthFirstAdapter.inAEqBinop(AEqBinop), traverses the children of AEqBinop in the order they are defined in the grammar, and finally calls DepthFirstAdapter.outAEqBinop(AEqBinop).
 A AnswerAdapter.caseAEqBinop(AEqBinop node)
          Returns the default answer for a AEqBinop node.
 A Answer.caseAEqBinop(AEqBinop node)
          Called by AEqBinop from apply(Answer).
 void AnalysisAdapter.caseAEqBinop(AEqBinop node)
          Called by the AEqBinop node from AEqBinop#apply(Switch).
 void Analysis.caseAEqBinop(AEqBinop node)
          Called by the AEqBinop node from AEqBinop#apply(Switch).
 A QuestionAnswerAdapter.caseAEqBinop(AEqBinop node, Q question)
          Returns the default answer for a AEqBinop node.
 A QuestionAnswer.caseAEqBinop(AEqBinop node, Q question)
          Called by AEqBinop from apply(QuestionAnswer,Object).
 void QuestionAdapter.caseAEqBinop(AEqBinop node, Q question)
          Action for applying a question to a AEqBinop node.
 void Question.caseAEqBinop(AEqBinop node, Q question)
          Called by AEqBinop from apply(Question,Object).
 void ReversedDepthFirstAdapter.inAEqBinop(AEqBinop node)
          Called by ReversedDepthFirstAdapter.caseAEqBinop(AEqBinop) before traversing the children of AEqBinop.
 void DepthFirstAdapter.inAEqBinop(AEqBinop node)
          Called by DepthFirstAdapter.caseAEqBinop(AEqBinop) before traversing the children of AEqBinop.
 void ReversedDepthFirstAdapter.outAEqBinop(AEqBinop node)
          Called by ReversedDepthFirstAdapter.caseAEqBinop(AEqBinop) after traversing the children of AEqBinop.
 void DepthFirstAdapter.outAEqBinop(AEqBinop node)
          Called by DepthFirstAdapter.caseAEqBinop(AEqBinop) after traversing the children of AEqBinop.
 

Uses of AEqBinop in tip.node
 

Methods in tip.node that return AEqBinop
 AEqBinop AEqBinop.clone()
          Returns a deep clone of this AEqBinop node.
 AEqBinop AEqBinop.clone(Map<Node,Node> oldToNewMap)
          Creates a deep clone of this AEqBinop node while putting all old node-new node relations in the map oldToNewMap.