Uses of Class
tip.node.AInputExp

Packages that use AInputExp
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.display Provides classes for display ASTs and CFGs of TIP programs. 
tip.node Provides node classes for representing the TIP ASTs. 
tip.phases Provides the TIP compiler phases. 
 

Uses of AInputExp in tip.analysis
 

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

Uses of AInputExp in tip.cfg
 

Methods in tip.cfg that return AInputExp
 AInputExp CInputExpPoint.getNode()
          Returns the AInputExp associated with this program point.
 

Methods in tip.cfg with parameters of type AInputExp
 boolean ICFGAnalysis.caseCInputExpPoint(AInputExp node, CInputExpPoint point)
          caseCInputExpPoint is called by a CInputExpPoint from CInputExpPoint.apply(ICFGAnalysis).
 A CFGAnswerAdapter.caseCInputExpPoint(AInputExp node, CInputExpPoint point)
          Default implementation.
 A CFGAnswer.caseCInputExpPoint(AInputExp node, CInputExpPoint point)
          caseCInputExpPoint is called by a CInputExpPoint from CInputExpPoint.apply(CFGAnswer).
 boolean CFGAnalysisAdapter.caseCInputExpPoint(AInputExp node, CInputExpPoint point)
          Default implementation.
 A CFGQuestionAnswerAdapter.caseCInputExpPoint(AInputExp node, CInputExpPoint point, Q question)
          Default implementation.
 A CFGQuestionAnswer.caseCInputExpPoint(AInputExp node, CInputExpPoint point, Q question)
          caseCInputExpPoint is called by a CInputExpPoint from CInputExpPoint.apply(CFGQuestionAnswer,Object).
 void CFGBuilder.inAInputExp(AInputExp node)
           
 

Constructors in tip.cfg with parameters of type AInputExp
CInputExpPoint(AInputExp _node_)
          Creates a new CInputExpPoint associated with the AInputExp _node_ with the label "".
CInputExpPoint(AInputExp _node_, String _label_)
          Creates a new CInputExpPoint associated with the AInputExp _node_ with the label _label_.
 

Uses of AInputExp in tip.display
 

Methods in tip.display with parameters of type AInputExp
 Integer Precedence.caseAInputExp(AInputExp node)
           
 String NodeText.caseAInputExp(AInputExp node)
           
 

Uses of AInputExp in tip.node
 

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

Uses of AInputExp in tip.phases
 

Methods in tip.phases with parameters of type AInputExp
 void CodeGeneration.caseAInputExp(AInputExp node)
           
 void TypeChecking.outAInputExp(AInputExp node)