Changes between Version 30 and Version 31 of AST


Ignore:
Timestamp:
04/23/11 10:52:40 (15 years ago)
Author:
Stephen Siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AST

    v30 v31  
    44
    55Requirements:
    6  * the AST should be "abstract": it should be tied too rightly to the specific syntax of one programming language.  It should be more-or-less language neutral: to the extent possible one common AST should be used for C, C++, Fortran(s), or similar imperative programming languages
     6 * the AST should be "abstract": it should not be tied too tightly to the specific syntax of one programming language.  It should be more-or-less language neutral: to the extent possible one common AST should be used for C, C++, Fortran(s), or similar imperative programming languages
    77 * the AST should be a tree: every node other than root should have a unique parent and there should be no cycles
    88 * the AST should deal primarily with syntax, though some amount of semantic information might be necessary