Uses of Class
tip.node.TLPar

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

Uses of TLPar in tip.analysis
 

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

Uses of TLPar in tip.node
 

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

Methods in tip.node with parameters of type TLPar
 void AWhileStm.setToken(TLPar value)
          Sets the token child of this AWhileStm node.
 void AIfThenStm.setToken(TLPar value)
          Sets the token child of this AIfThenStm node.
 void AIfThenElseStm.setToken(TLPar value)
          Sets the token child of this AIfThenElseStm node.
 

Constructors in tip.node with parameters of type TLPar
AIfThenElseStm(TLPar _token_, PExp _condition_, PStm _then_body_, PStm _else_body_)
          Creates a new AIfThenElseStm node with the given nodes as children.
AIfThenStm(TLPar _token_, PExp _condition_, PStm _body_)
          Creates a new AIfThenStm node with the given nodes as children.
AWhileStm(TLPar _token_, PExp _condition_, PStm _body_)
          Creates a new AWhileStm node with the given nodes as children.