Uses of Class
tip.node.TVar

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

Uses of TVar in tip.analysis
 

Methods in tip.analysis with parameters of type TVar
 A AnswerAdapter.caseTVar(TVar node)
          Returns the default answer for a TVar node.
 A Answer.caseTVar(TVar node)
          Called by TVar from apply(Answer).
 void AnalysisAdapter.caseTVar(TVar node)
          Called by the TVar node from TVar#apply(Switch).
 void Analysis.caseTVar(TVar node)
          Called by the TVar node from TVar#apply(Switch).
 A QuestionAnswerAdapter.caseTVar(TVar node, Q question)
          Returns the default answer for a TVar node.
 A QuestionAnswer.caseTVar(TVar node, Q question)
          Called by TVar from apply(QuestionAnswer,Object).
 void QuestionAdapter.caseTVar(TVar node, Q question)
          Action for applying a question to a TVar node.
 void Question.caseTVar(TVar node, Q question)
          Called by TVar from apply(Question,Object).
 

Uses of TVar in tip.node
 

Methods in tip.node that return TVar
 TVar TVar.clone()
          Creates a clone of this TVar token.
 TVar TVar.clone(Map<Node,Node> oldToNewMap)
          Creates a deep clone of this TVar token while putting all old node-new node relations in the map oldToNewMap.
 TVar ADeclStm.getToken()
          Returns the TVar node which is the token child of this ADeclStm node.
 

Methods in tip.node with parameters of type TVar
 void ADeclStm.setToken(TVar value)
          Sets the token child of this ADeclStm node.
 

Constructors in tip.node with parameters of type TVar
ADeclStm(TVar _token_, List<? extends ALocalDecl> _decl_)
          Creates a new ADeclStm node with the given nodes as children.