| Index: sdk/lib/_internal/compiler/implementation/elements/elements.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/elements/elements.dart b/sdk/lib/_internal/compiler/implementation/elements/elements.dart
|
| index 902ca67c3183ebbaa8f82c2b5f5d18beaf7dfc39..03432df59d89fe1b755bee7f53939f22417af220 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/elements/elements.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/elements/elements.dart
|
| @@ -741,7 +741,7 @@ abstract class TypedefElement extends Element
|
| TypedefType get rawType;
|
| DartType get alias;
|
| FunctionSignature get functionSignature;
|
| - Link<DartType> get typeVariables;
|
| + List<DartType> get typeVariables;
|
|
|
| bool get isResolved;
|
|
|
| @@ -858,7 +858,7 @@ abstract class TypeDeclarationElement extends Element {
|
| * available until the type of the element has been computed through
|
| * [computeType].
|
| */
|
| - Link<DartType> get typeVariables;
|
| + List<DartType> get typeVariables;
|
| }
|
|
|
| abstract class ClassElement extends TypeDeclarationElement
|
| @@ -962,7 +962,7 @@ abstract class ClassElement extends TypeDeclarationElement
|
|
|
| void forEachBackendMember(void f(Element member));
|
|
|
| - Link<DartType> computeTypeParameters(Compiler compiler);
|
| + List<DartType> computeTypeParameters(Compiler compiler);
|
|
|
| /// Looks up the member [name] in this class.
|
| Member lookupClassMember(Name name);
|
|
|