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

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

Issue 10270010: Remove getType; use the resolver instead. (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
« no previous file with comments | « no previous file | 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 e8c55bafab093c6c84321e88cb77228c4a5997be..a07237d60a2d179721227c97cbab5de9fdb06ff0 100644
--- a/lib/compiler/implementation/compiler.dart
+++ b/lib/compiler/implementation/compiler.dart
@@ -411,6 +411,10 @@ class Compiler implements DiagnosticListener {
withCurrentElement(element, () => resolver.resolveClass(element));
}
+ Type resolveType(Element element, TypeAnnotation annotation) {
ahe 2012/05/02 14:15:53 resolveTypeAnnotation?
karlklose 2012/05/02 18:43:54 Done.
+ return resolver.resolveType(element, annotation);
ahe 2012/05/02 14:15:53 Ditto
karlklose 2012/05/02 18:43:54 Done.
+ }
+
FunctionParameters resolveSignature(FunctionElement element) {
return withCurrentElement(element,
() => resolver.resolveSignature(element));
« no previous file with comments | « no previous file | lib/compiler/implementation/elements/elements.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698