Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Unified Diff: sdk/lib/_internal/compiler/implementation/elements/elements.dart

Issue 177963002: Use List instead of Link in the type system. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 4b367ec125066ea24b3a5b8f6ed8e95b89372cd8..d54aea2d7ca2db1b16727b102401b7b5747b3ff2 100644
--- a/sdk/lib/_internal/compiler/implementation/elements/elements.dart
+++ b/sdk/lib/_internal/compiler/implementation/elements/elements.dart
@@ -1056,7 +1056,7 @@ abstract class TypeDeclarationElement extends Element implements AstElement {
* available until the type of the element has been computed through
* [computeType].
*/
- Link<DartType> get typeVariables;
+ List<DartType> get typeVariables;
bool get isResolved;
@@ -1161,7 +1161,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);

Powered by Google App Engine
This is Rietveld 408576698