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

Unified Diff: pkg/compiler/lib/src/elements/common.dart

Issue 1352533002: Enqueue superclasses instead of supertypes. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 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: pkg/compiler/lib/src/elements/common.dart
diff --git a/pkg/compiler/lib/src/elements/common.dart b/pkg/compiler/lib/src/elements/common.dart
index 6c4352a3ed10a338555c15fa627abd8fe890c8b7..103f874d89d5d6eed694263a0b13d92baf6de835 100644
--- a/pkg/compiler/lib/src/elements/common.dart
+++ b/pkg/compiler/lib/src/elements/common.dart
@@ -436,6 +436,11 @@ abstract class ClassElementCommon implements ClassElement {
MemberSignature member = lookupInterfaceMember(Names.call);
return member != null && member.isMethod ? member.type : null;
}
+
+ @override
+ bool get isNamedMixinApplication {
+ return isMixinApplication && !isUnnamedMixinApplication;
+ }
}
abstract class FunctionSignatureCommon implements FunctionSignature {

Powered by Google App Engine
This is Rietveld 408576698