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

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: Remove accidental edits. 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
« no previous file with comments | « frog/tests/leg/src/mock_compiler.dart ('k') | lib/compiler/implementation/elements/elements.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/compiler.dart
diff --git a/lib/compiler/implementation/compiler.dart b/lib/compiler/implementation/compiler.dart
index dde5b0cfd9d5d1e76de943d01371d8b3e1f88be8..8bc0c9531b864dc7108ec175e3ef2d13e04f6ec9 100644
--- a/lib/compiler/implementation/compiler.dart
+++ b/lib/compiler/implementation/compiler.dart
@@ -403,8 +403,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) {
« no previous file with comments | « frog/tests/leg/src/mock_compiler.dart ('k') | lib/compiler/implementation/elements/elements.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698