Changes between Version 14 and Version 15 of AST


Ignore:
Timestamp:
04/20/11 07:31:07 (15 years ago)
Author:
Stephen Siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AST

    v14 v15  
    100100       * name: IdentifierNodeIF
    101101       * type: TypeNodeIF  (type being assigned a name)
     102 * LabelNodeIF: a label preceding a statement
     103    * methods
     104        * statement: StatementNodeIF : the statement this label precedes (this may be null at first)
     105        * identifier: IdentifierNodeIF: the name of this label
    102106 * StatementNodeIF
    103107    * methods
    104        * labels: Collection<ASTLabelIF>: set of labels associated to this statement.   The labels all correspond to the point of control just before the statement.
     108       * labels: Collection<LabelNodeIF>: set of labels associated to this statement.   The labels all correspond to the point of control just before the statement.
    105109    * AssertStatementNodeIF: this could come from a program language assert or a TASS pragma
    106110       * methods
     
    138142    * ContinueNodeIF
    139143    * GotoNodeIF
    140        * label (this is the kind before processing)
    141        * statement (after processing)
     144       * label: LabelNodeIF
    142145    * ReturnNodeIF
    143146       * expression (may be null)