Uses of Class
tip.node.PBody

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

Uses of PBody in tip.analysis
 

Methods in tip.analysis with parameters of type PBody
 void ReversedDepthFirstAdapter.defaultInPBody(PBody node)
          Default case for in-calls from PBody nodes.
 void DepthFirstAdapter.defaultInPBody(PBody node)
          Default case for in-calls from PBody nodes.
 void ReversedDepthFirstAdapter.defaultOutPBody(PBody node)
          Default case for out-calls from PBody nodes.
 void DepthFirstAdapter.defaultOutPBody(PBody node)
          Default case for out-calls from PBody nodes.
 void ReversedDepthFirstAdapter.defaultPBody(PBody node)
          Not invoked since #casePBody(PBody) is overridden.
 void DepthFirstAdapter.defaultPBody(PBody node)
          Not invoked since #casePBody(PBody) is overridden.
 A AnswerAdapter.defaultPBody(PBody node)
          Returns the default answer for a PBody node.
 void AnalysisAdapter.defaultPBody(PBody node)
          Base case for all PBody nodes.
 A QuestionAnswerAdapter.defaultPBody(PBody node, Q question)
          Returns the default answer for a PBody node.
 void QuestionAdapter.defaultPBody(PBody node, Q question)
          Action for applying a question to a PBody node.
 

Uses of PBody in tip.node
 

Subclasses of PBody in tip.node
 class ABody
          ABody represents the alternative of the body production in the AST.
 

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