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

Unified Diff: tests/compiler/dart2js/equivalence/check_functions.dart

Issue 3005823002: Handle forwarding constructors to unnamed mixin applications (Closed)
Patch Set: Updated cf. comments Created 3 years, 3 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: tests/compiler/dart2js/equivalence/check_functions.dart
diff --git a/tests/compiler/dart2js/equivalence/check_functions.dart b/tests/compiler/dart2js/equivalence/check_functions.dart
index 9482e0941b73fd279e3a93435492e34b8d9d0fcb..8a0187b257a231c3fb593b5a00221481ccaa19cf 100644
--- a/tests/compiler/dart2js/equivalence/check_functions.dart
+++ b/tests/compiler/dart2js/equivalence/check_functions.dart
@@ -1023,7 +1023,7 @@ void checkEmitterLibraries(
Library library1, Library library2, TestStrategy strategy) {
check(library1, library2, 'uri', library1.uri, library2.uri);
checkLists(library1.classes, library2.classes, 'classes',
- (a, b) => a.element.name == b.element.name,
+ (a, b) => a.name.key == b.name.key,
onSameElement: (a, b) => checkEmitterClasses(a, b, strategy));
checkLists(library1.statics, library2.statics, 'statics',
(a, b) => a.name.key == b.name.key,

Powered by Google App Engine
This is Rietveld 408576698