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

Unified Diff: lib/compiler/implementation/elements/elements.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/elements/elements.dart
diff --git a/lib/compiler/implementation/elements/elements.dart b/lib/compiler/implementation/elements/elements.dart
index 994ff8a7dbd1be63ce336f92d1d6dc567378efd4..b6057db50bdd2d8d7bf181db17f503306c6c5b98 100644
--- a/lib/compiler/implementation/elements/elements.dart
+++ b/lib/compiler/implementation/elements/elements.dart
@@ -721,7 +721,7 @@ class ClassElement extends ContainerElement {
ClassElement ensureResolved(Compiler compiler) {
ahe 2012/04/18 09:09:54 Long term, I would like to get these kinds of meth
if (!isResolved && !isBeingResolved) {
isBeingResolved = true;
- compiler.resolveType(this);
+ compiler.resolveClass(this);
isBeingResolved = false;
isResolved = true;
}

Powered by Google App Engine
This is Rietveld 408576698