Index: lib/compiler/implementation/typechecker.dart |
diff --git a/lib/compiler/implementation/typechecker.dart b/lib/compiler/implementation/typechecker.dart |
index f2716d423262fc4a763e95529d66d4943bf596f7..7eb010a5a087f6b3f5a668299b880477f30941f9 100644 |
--- a/lib/compiler/implementation/typechecker.dart |
+++ b/lib/compiler/implementation/typechecker.dart |
@@ -232,10 +232,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); |
Type subst(Compiler compiler, Link<Type> arguments, |
LinkedHashMap<SourceString, TypeVariableElement> typeParameters) { |