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

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

Issue 10854140: Fix type inference for self-recursive functions (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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/dart_backend/backend.dart
diff --git a/lib/compiler/implementation/dart_backend/backend.dart b/lib/compiler/implementation/dart_backend/backend.dart
index b036a5f4d92b7c6829faee917910054ff6936b84..2304fdedd9fe37b3c88170e1b2c72c662d238819 100644
--- a/lib/compiler/implementation/dart_backend/backend.dart
+++ b/lib/compiler/implementation/dart_backend/backend.dart
@@ -22,7 +22,7 @@ class DartBackend extends Backend {
// TODO(antonm): Implement this method, if needed.
}
- CodeBuffer codegen(WorkItem work) { return new CodeBuffer(); }
+ void codegen(WorkItem work) => null;
ahe 2012/08/14 07:57:56 Please don't use => for void methods (outside test
Søren Gjesse 2012/08/14 08:26:30 Changed to empty body.
void processNativeClasses(Enqueuer world,
Collection<LibraryElement> libraries) {

Powered by Google App Engine
This is Rietveld 408576698