| Index: lib/compiler/implementation/typechecker.dart
|
| diff --git a/lib/compiler/implementation/typechecker.dart b/lib/compiler/implementation/typechecker.dart
|
| index c44326180dce5407de98ff00452b1a6f585a8dad..4d581454067102a69f9ec21e27d9c45122d6a9d0 100644
|
| --- a/lib/compiler/implementation/typechecker.dart
|
| +++ b/lib/compiler/implementation/typechecker.dart
|
| @@ -34,7 +34,7 @@ class TypeVariableType implements Type {
|
| Element element;
|
| TypeVariableType(this.name, [this.element]);
|
|
|
| - toString() => name.toString();
|
| + toString() => name.slowToString();
|
| }
|
|
|
| /**
|
| @@ -62,7 +62,7 @@ class StatementType implements Type {
|
|
|
| class InterfaceType implements Type {
|
| final SourceString name;
|
| - final Element element;
|
| + final ClassElement element;
|
| final Link<Type> arguments;
|
|
|
| const InterfaceType(this.name, this.element,
|
|
|