Uses of Class
tip.node.AGtBinop

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

Uses of AGtBinop in tip.analysis
 

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

Uses of AGtBinop in tip.node
 

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