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

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

Issue 284213002: dart2dart: Logical operators and related rewrite rules in dart_tree. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: SVN rebase Created 6 years, 7 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 aeaee9f883d5a2cf1841a0d15f307ad5c74a1651..bd61e859cad3b6bab313b36ba37689e1649751f5 100644
--- a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
+++ b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
@@ -235,8 +235,10 @@ class DartBackend extends Backend {
compiler.tracer.traceCompilation(element.name, null, compiler);
compiler.tracer.traceGraph('Tree builder', definition);
treeElements = new TreeElementMapping(element);
- new tree.TreeRewriter().apply(definition);
- compiler.tracer.traceGraph('Tree rewriter', definition);
+ new tree.StatementRewriter().rewrite(definition);
+ compiler.tracer.traceGraph('Statement rewriter', definition);
+ new tree.LogicalRewriter().rewrite(definition);
+ compiler.tracer.traceGraph('Logical rewriter', definition);
node = dart_codegen.emit(element, treeElements, definition);
}
return new ElementAst(node, treeElements);
« 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