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

Unified Diff: sdk/lib/_internal/compiler/implementation/lib/io_patch.dart

Issue 14907002: dart:io | Implement asynchronous versions of FileSystemEntity methods. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add implementation of FileSystemEntity.type, and refactor error handling. Created 7 years, 8 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 | « runtime/bin/file_system_entity_patch.dart ('k') | sdk/lib/io/common.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
diff --git a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
index fab0cf59f4e7fa236e22691613e7538ace770afb..a31da5738fe96537e69b873c6284d248dc083b67 100644
--- a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
+++ b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
@@ -57,10 +57,10 @@ patch class _FileUtils {
}
patch class FileSystemEntity {
- patch static int _getType(String path, bool followLinks) {
+ patch static _getType(String path, bool followLinks) {
throw new UnsupportedError("FileSystemEntity._getType");
}
- patch static bool _identical(String path1, String path2) {
+ patch static _identical(String path1, String path2) {
throw new UnsupportedError("FileSystemEntity._identical");
}
}
« no previous file with comments | « runtime/bin/file_system_entity_patch.dart ('k') | sdk/lib/io/common.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698