Uses of Class
tip.node.ABlockStm

Packages that use ABlockStm
tip.analysis Provides the analysis utility classes for the TIP ASTs. 
tip.cfg Provides the basic framework for performing fixed-point analyses of TIP programs. 
tip.node Provides node classes for representing the TIP ASTs. 
 

Uses of ABlockStm in tip.analysis
 

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

Uses of ABlockStm in tip.cfg
 

Methods in tip.cfg with parameters of type ABlockStm
 void CFGBuilder.inABlockStm(ABlockStm node)
           
 

Uses of ABlockStm in tip.node
 

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