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

Unified Diff: pkg/analyzer/lib/src/summary/link.dart

Issue 1951363003: Report when members indirectly inherited through a mixin are not implemented (issue 26411) (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Fixed test failures Created 4 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/analyzer/lib/src/summary/link.dart
diff --git a/pkg/analyzer/lib/src/summary/link.dart b/pkg/analyzer/lib/src/summary/link.dart
index 52b3243b6128cd12272b4874c563f160dd5de340..0e1e68fde673438fa4ec3e6c329ce3fe13855367 100644
--- a/pkg/analyzer/lib/src/summary/link.dart
+++ b/pkg/analyzer/lib/src/summary/link.dart
@@ -458,6 +458,9 @@ class ClassElementForLink_Class extends ClassElementForLink
_unlinkedClass.interfaces.map(_computeInterfaceType).toList();
@override
+ bool get isMixinApplication => _unlinkedClass.isMixinApplication;
+
+ @override
bool get isObject => _unlinkedClass.hasNoSupertype;
@override

Powered by Google App Engine
This is Rietveld 408576698