Show
Ignore:
Timestamp:
10/22/09 23:51:27 (5 weeks ago)
Author:
jrhil47
Message:

[AST] Made the throws clause allow types that are not base types.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ProjectFortress/astgen/Fortress.ast

    r4275 r4280  
    13501350             * e.g.) throws FailCalled 
    13511351             */ 
    1352             Effect(Option<List<BaseType>> throwsClause, boolean ioEffect); 
     1352            Effect(Option<List<Type>> throwsClause, boolean ioEffect); 
    13531353            /** 
    13541354             * where clause used in trait, object, and functional declarations 
     
    19101910                                        IdOrOpOrAnonymousName name, 
    19111911                                        Option<WhereClause> whereClause, 
    1912                                         Option<List<BaseType>> throwsClause, // except TraitDecl 
     1912                                        Option<List<Type>> throwsClause, // except TraitDecl 
    19131913                                        Option<Contract> contract); // except TraitDecl / FnExpr 
    19141914                        /**