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

Unified Diff: lib/compiler/implementation/compiler.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/compiler.dart
diff --git a/lib/compiler/implementation/compiler.dart b/lib/compiler/implementation/compiler.dart
index 6602ce259171b2002ae467b267cd1c3aa224af62..114ca0f2c60e5d16ac4ffef2afcc49cb5671d094 100644
--- a/lib/compiler/implementation/compiler.dart
+++ b/lib/compiler/implementation/compiler.dart
@@ -391,8 +391,8 @@ class Compiler implements DiagnosticListener {
universe.isChecks.add(element);
}
- Type resolveType(ClassElement element) {
- return withCurrentElement(element, () => resolver.resolveType(element));
+ void resolveClass(ClassElement element) {
+ withCurrentElement(element, () => resolver.resolveClass(element));
}
FunctionParameters resolveSignature(FunctionElement element) {

Powered by Google App Engine
This is Rietveld 408576698