Uses of Class
tip.node.EOF

Packages that use EOF
tip.analysis Provides the analysis utility classes for the TIP ASTs. 
tip.display Provides classes for display ASTs and CFGs of TIP programs. 
tip.node Provides node classes for representing the TIP ASTs. 
 

Uses of EOF in tip.analysis
 

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

Uses of EOF in tip.display
 

Methods in tip.display with parameters of type EOF
 void ASTDisplay.caseEOF(EOF node)
           
 

Uses of EOF in tip.node
 

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

Methods in tip.node with parameters of type EOF
 void Start.setEOF(EOF value)
          Sets the eof child of this Start node.
 

Constructors in tip.node with parameters of type EOF
Start(AProgram program, EOF eof)
          Creates a new Start node with the given nodes as children.