Index: lib/compiler/implementation/typechecker.dart |
diff --git a/lib/compiler/implementation/typechecker.dart b/lib/compiler/implementation/typechecker.dart |
index 54698b8aa099814b8cef111481931ddde1977098..e10766a6af351b904d6f730fd8306874a8357afa 100644 |
--- a/lib/compiler/implementation/typechecker.dart |
+++ b/lib/compiler/implementation/typechecker.dart |
@@ -92,10 +92,10 @@ class InterfaceType implements Type { |
class FunctionType implements Type { |
final Element element; |
final Type returnType; |
- final Link<Type> parameterTypes; |
+ Link<Type> parameterTypes; |
- const FunctionType(Type this.returnType, Link<Type> this.parameterTypes, |
- Element this.element); |
+ FunctionType(Type this.returnType, Link<Type> this.parameterTypes, |
+ Element this.element); |
toString() { |
StringBuffer sb = new StringBuffer(); |