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

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

Issue 318723002: dart2dart: Restore loops with conditions and updates in backend. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Test cases Created 6 years, 6 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 | sdk/lib/_internal/compiler/implementation/dart_backend/dart_codegen.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
diff --git a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
index e05a462419c19ccef44378c13190169707f6ecf9..5a402aa9aac9751041505396f714becaa0a669a0 100644
--- a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
+++ b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
@@ -237,6 +237,8 @@ class DartBackend extends Backend {
treeElements = new TreeElementMapping(element);
new tree.StatementRewriter().rewrite(definition);
compiler.tracer.traceGraph('Statement rewriter', definition);
+ new tree.LoopRewriter().rewrite(definition);
+ compiler.tracer.traceGraph('Loop rewriter', definition);
new tree.LogicalRewriter().rewrite(definition);
compiler.tracer.traceGraph('Logical rewriter', definition);
node = dart_codegen.emit(element, treeElements, definition);
« no previous file with comments | « no previous file | sdk/lib/_internal/compiler/implementation/dart_backend/dart_codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698