- Timestamp:
- 07/02/09 07:59:33 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/ProjectFortress/src/com/sun/fortress/compiler/index/Constructor.java
r3764 r3915 39 39 import edu.rice.cs.plt.iter.IterUtil; 40 40 import edu.rice.cs.plt.lambda.Lambda; 41 import edu.rice.cs.plt.lambda.Thunk; 41 42 import edu.rice.cs.plt.tuple.Option; 42 43 … … 60 61 _throwsClause = throwsClause; 61 62 _where = where; 63 putThunk(new Thunk<Option<Type>>() { 64 @Override public Option<Type> value() { 65 return NI.nyi(); 66 } 67 }); 62 68 } 63 69 … … 117 123 118 124 @Override 119 public Type getReturnType() {120 // TODO Auto-generated method stub121 return NI.nyi();122 }123 124 @Override125 125 public Functional acceptNodeUpdateVisitor(final NodeUpdateVisitor v) { 126 126

