Uses of Class
tip.node.APlusBinop

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

Uses of APlusBinop in tip.analysis
 

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

Uses of APlusBinop in tip.node
 

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