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

Unified Diff: pkg/compiler/lib/src/serialization/equivalence.dart

Issue 1888803002: Support serialization of all resolved asts from dart:core (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Fix unittests. Created 4 years, 8 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/serialization/equivalence.dart
diff --git a/pkg/compiler/lib/src/serialization/equivalence.dart b/pkg/compiler/lib/src/serialization/equivalence.dart
index a24ee61f2cdf7bf5816960d8cb52c7cec1c69dfb..dca00d9c59627f5aa4e247acd208060d3173d9a6 100644
--- a/pkg/compiler/lib/src/serialization/equivalence.dart
+++ b/pkg/compiler/lib/src/serialization/equivalence.dart
@@ -1223,7 +1223,7 @@ class NodeEquivalenceVisitor implements Visitor1<bool, Node> {
node1, node2, 'condition', node1.condition, node2.condition) &&
testNodes(
node1, node2, 'expression', node1.expression, node2.expression) &&
- testNodes(node1, node2, 'body', node1.expression, node2.body) &&
+ testNodes(node1, node2, 'body', node1.body, node2.body) &&
testNodes(node1, node2, 'declaredIdentifier', node1.declaredIdentifier,
node2.declaredIdentifier);
}
« no previous file with comments | « pkg/compiler/lib/src/serialization/constant_serialization.dart ('k') | pkg/compiler/lib/src/ssa/builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698