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

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

Issue 10779010: Parameters with function types supported + Added features in mirrors implementation (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments Created 8 years, 5 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 79e936668248c2a67fd6ecb0cc9d506efd0254fd..abc40e3844ecb79c6f81597dd1aa5ef21c544333 100644
--- a/lib/compiler/implementation/compiler.dart
+++ b/lib/compiler/implementation/compiler.dart
@@ -921,6 +921,12 @@ class Compiler implements DiagnosticListener {
() => resolver.resolveSignature(element));
}
+ FunctionSignature resolveFunctionExpression(Element element,
+ FunctionExpression node) {
+ return withCurrentElement(element,
+ () => resolver.resolveFunctionExpression(element, node));
+ }
+
FunctionSignature resolveTypedef(TypedefElement element) {
return withCurrentElement(element,
() => resolver.resolveTypedef(element));
« no previous file with comments | « no previous file | lib/compiler/implementation/elements/elements.dart » ('j') | lib/compiler/implementation/elements/elements.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698