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

Unified Diff: pkg/analyzer/lib/file_system/file_system.dart

Issue 1481273002: Consistently use implements when one interface inherits from another interface (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month 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 | « pkg/analysis_server/lib/plugin/protocol/protocol.dart ('k') | pkg/analyzer/lib/task/model.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/file_system/file_system.dart
diff --git a/pkg/analyzer/lib/file_system/file_system.dart b/pkg/analyzer/lib/file_system/file_system.dart
index 21e8d05112df3b3aed1625c5e140ca2077e13431..cbe175f89a27387dba986d59e23f6d3d37efefef 100644
--- a/pkg/analyzer/lib/file_system/file_system.dart
+++ b/pkg/analyzer/lib/file_system/file_system.dart
@@ -14,7 +14,7 @@ import 'package:watcher/watcher.dart';
/**
* [File]s are leaf [Resource]s which contain data.
*/
-abstract class File extends Resource {
+abstract class File implements Resource {
/**
* Watch for changes to this file
*/
@@ -53,7 +53,7 @@ class FileSystemException implements Exception {
/**
* [Folder]s are [Resource]s which may contain files and/or other folders.
*/
-abstract class Folder extends Resource {
+abstract class Folder implements Resource {
/**
* Watch for changes to the files inside this folder (and in any nested
* folders, including folders reachable via links).
« no previous file with comments | « pkg/analysis_server/lib/plugin/protocol/protocol.dart ('k') | pkg/analyzer/lib/task/model.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698