Uses of Class
tip.node.TReturn

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

Uses of TReturn in tip.analysis
 

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

Uses of TReturn in tip.node
 

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

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

Constructors in tip.node with parameters of type TReturn
AReturnStm(TReturn _token_, PExp _exp_)
          Creates a new AReturnStm node with the given nodes as children.