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

Unified Diff: lib/compiler/implementation/enqueue.dart

Issue 10105031: Check number of type arguments. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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: lib/compiler/implementation/enqueue.dart
diff --git a/lib/compiler/implementation/enqueue.dart b/lib/compiler/implementation/enqueue.dart
index 874e38d1e8e852613c4ccbb20989a69b3ea76071..76cd1459a38393a3227dfc61de42928e49aa9654 100644
--- a/lib/compiler/implementation/enqueue.dart
+++ b/lib/compiler/implementation/enqueue.dart
@@ -118,7 +118,7 @@ class EnqueueTask extends CompilerTask {
seenClasses.add(cls);
// TODO(ahe): Don't call resolveType, instead, call this method
// when resolveType is called.
- compiler.resolveType(cls);
+ compiler.resolveClass(cls);
cls.members.forEach(processInstantiatedClassMember);
cls = cls.superclass;
}

Powered by Google App Engine
This is Rietveld 408576698