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

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

Issue 2119193002: Compute correct names for closures in operator methods. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 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/serialization/equivalence.dart
diff --git a/pkg/compiler/lib/src/serialization/equivalence.dart b/pkg/compiler/lib/src/serialization/equivalence.dart
index ec5dd23cb1af077914bf240d268ebc1f8c5ce6d0..3acb1029dda6748c242c7b3cd0f392f12026e033 100644
--- a/pkg/compiler/lib/src/serialization/equivalence.dart
+++ b/pkg/compiler/lib/src/serialization/equivalence.dart
@@ -562,7 +562,7 @@ class TypeEquivalence implements DartTypeVisitor<bool, DartType> {
@override
bool visitTypeVariableType(TypeVariableType type, TypeVariableType other) {
return strategy.testElements(
Johnni Winther 2016/07/04 13:40:36 dartfmt
- type, other, 'element', type.element, other.element) &&
+ type, other, 'element', type.element, other.element) &&
strategy.test(type, other, 'is MethodTypeVariableType',
type is MethodTypeVariableType, other is MethodTypeVariableType);
}

Powered by Google App Engine
This is Rietveld 408576698