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

Unified Diff: pkg/scheduled_test/lib/src/descriptor/descriptor.dart

Issue 16368003: Fix an analyzer error in scheduled_test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/scheduled_test/lib/src/descriptor/descriptor.dart
diff --git a/pkg/scheduled_test/lib/src/descriptor/descriptor.dart b/pkg/scheduled_test/lib/src/descriptor/descriptor.dart
index e2341182ae29f66b08a80047d90e34094bacc106..82342c45063273353da5b063fb61a8eff1fff422 100644
--- a/pkg/scheduled_test/lib/src/descriptor/descriptor.dart
+++ b/pkg/scheduled_test/lib/src/descriptor/descriptor.dart
@@ -40,7 +40,7 @@ abstract class Descriptor {
}
/// An interface for descriptors that can load the contents of sub-descriptors.
-abstract class LoadableDescriptor extends Descriptor {
+abstract class LoadableDescriptor implements Descriptor {
/// Treats [this] as an in-memory filesystem and returns a stream of the
/// contents of the child entry located at [path]. This only works if [this]
/// is a directory entry. This operation is not [schedule]d.
@@ -54,7 +54,7 @@ abstract class LoadableDescriptor extends Descriptor {
}
/// An interface for descriptors whose contents can be read.
-abstract class ReadableDescriptor extends Descriptor {
+abstract class ReadableDescriptor implements Descriptor {
/// Returns the contents of [this] as a stream. This only works if [this] is a
/// file entry. This operation is not [schedule]d.
///
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698