Uses of Class
tip.node.ATimesBinop

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

Uses of ATimesBinop in tip.analysis
 

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

Uses of ATimesBinop in tip.node
 

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