Uses of Class
tip.node.TAssign

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

Uses of TAssign in tip.analysis
 

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

Uses of TAssign in tip.node
 

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

Methods in tip.node with parameters of type TAssign
 void AAssignVarStm.setToken(TAssign value)
          Sets the token child of this AAssignVarStm node.
 void AAssignPtrStm.setToken(TAssign value)
          Sets the token child of this AAssignPtrStm node.
 

Constructors in tip.node with parameters of type TAssign
AAssignPtrStm(TAssign _token_, PExp _left_, PExp _right_)
          Creates a new AAssignPtrStm node with the given nodes as children.
AAssignVarStm(TAssign _token_, TIdentifier _identifier_, PExp _exp_)
          Creates a new AAssignVarStm node with the given nodes as children.