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

Unified Diff: pkg/compiler/lib/src/cps_ir/shrinking_reductions.dart

Issue 1240263002: dart2js cps: Streamline expressions and primitives. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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: pkg/compiler/lib/src/cps_ir/shrinking_reductions.dart
diff --git a/pkg/compiler/lib/src/cps_ir/shrinking_reductions.dart b/pkg/compiler/lib/src/cps_ir/shrinking_reductions.dart
index f1970de0d0271ade7f88d180aef863f94f5e57c9..850820563ef5b9b020253818440da5d770af6e8b 100644
--- a/pkg/compiler/lib/src/cps_ir/shrinking_reductions.dart
+++ b/pkg/compiler/lib/src/cps_ir/shrinking_reductions.dart
@@ -576,7 +576,6 @@ class ParentVisitor extends RecursiveVisitor {
processSetMutableVariable(SetMutableVariable node) {
node.variable.parent = node;
- node.body.parent = node;
node.value.parent = node;
}
@@ -623,7 +622,6 @@ class ParentVisitor extends RecursiveVisitor {
processSetField(SetField node) {
node.object.parent = node;
node.value.parent = node;
- node.body.parent = node;
}
processGetField(GetField node) {
@@ -635,7 +633,6 @@ class ParentVisitor extends RecursiveVisitor {
processSetStatic(SetStatic node) {
node.value.parent = node;
- node.body.parent = node;
}
processGetMutableVariable(GetMutableVariable node) {

Powered by Google App Engine
This is Rietveld 408576698