Changeset 4086 for trunk/ProjectFortress/astgen
- Timestamp:
- 08/17/09 10:25:28 (3 months ago)
- Files:
-
- 1 modified
-
trunk/ProjectFortress/astgen/Fortress.ast (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ProjectFortress/astgen/Fortress.ast
r4083 r4086 1086 1086 * type of a generic function, used during static checking 1087 1087 */ 1088 ArrowType(Type domain, Type range, Effect effect, boolean io); 1088 ArrowType(Type domain, 1089 Type range, 1090 Effect effect, 1091 boolean io, 1092 Option<MethodInfo> methodInfo = Option.<MethodInfo>none()); 1089 1093 /** 1090 1094 * inferred type … … 1906 1910 TypeInfo(List<StaticParam> staticParams, 1907 1911 Option<WhereClause> whereClause); 1912 /* 1913 * Contains info about the self parameter in an arrow type for 1914 * a method. 1915 */ 1916 MethodInfo(Type selfType, int selfPosition); 1908 1917 /* 1909 1918 * Keeps track of ellipses properties. This is special cased

