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

Unified Diff: pkg/kernel/lib/verifier.dart

Issue 2939533002: Apply transformations after comparing to golden files. (Closed)
Patch Set: Created 3 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 | « pkg/front_end/testcases/super_rasta_copy.dart.direct.expect ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/lib/verifier.dart
diff --git a/pkg/kernel/lib/verifier.dart b/pkg/kernel/lib/verifier.dart
index f0ef68164f51cf42b772becec63f9c8e8eccd1c1..c923a8d7d8ae63fa57ba91655b87a83eda949e60 100644
--- a/pkg/kernel/lib/verifier.dart
+++ b/pkg/kernel/lib/verifier.dart
@@ -81,8 +81,8 @@ class VerifyingVisitor extends RecursiveVisitor {
problem(
node,
"Incorrect parent pointer on ${node.runtimeType}:"
- " expected '${node.parent.runtimeType}',"
- " but found: '${currentParent.runtimeType}'.");
+ " expected '${currentParent.runtimeType}',"
+ " but found: '${node.parent.runtimeType}'.");
}
var oldParent = currentParent;
currentParent = node;
« no previous file with comments | « pkg/front_end/testcases/super_rasta_copy.dart.direct.expect ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698