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

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

Issue 2872453004: cleanup TokenType var names (Closed)
Patch Set: Created 3 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
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 bb3bc96a46af0fd63346a29d857033a9038046f9..73e79f76bd71453cd6467e3339e4055228874e30 100644
--- a/pkg/compiler/lib/src/serialization/equivalence.dart
+++ b/pkg/compiler/lib/src/serialization/equivalence.dart
@@ -1449,7 +1449,7 @@ class NodeEquivalenceVisitor implements Visitor1<bool, Node> {
if (t1 == null || t2 == null) return false;
return strategy.test(
t1, t2, 'charOffset', t1.charOffset, t2.charOffset) &&
- strategy.test(t1, t2, 'info', t1.info, t2.info) &&
+ strategy.test(t1, t2, 'info', t1.type, t2.type) &&
strategy.test(t1, t2, 'value', t1.lexeme, t2.lexeme);
});
}
« no previous file with comments | « pkg/compiler/lib/src/resolution/enum_creator.dart ('k') | pkg/compiler/lib/src/serialization/serialization.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698