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

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

Issue 190723008: Fix type error in implementation of dart:io Directory.existsSync. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 6 years, 9 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/directory_patch.dart ('k') | sdk/lib/io/directory_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/lib/io_patch.dart
diff --git a/sdk/lib/_internal/lib/io_patch.dart b/sdk/lib/_internal/lib/io_patch.dart
index 68f8485c574baf0388c5c24acfdba83c97b0e3dd..0bd05440c24230ff9d8e8ff2b5b38e0d545d0cc2 100644
--- a/sdk/lib/_internal/lib/io_patch.dart
+++ b/sdk/lib/_internal/lib/io_patch.dart
@@ -15,7 +15,7 @@ patch class _Directory {
patch static String _systemTemp() {
throw new UnsupportedError("Directory._systemTemp");
}
- patch static int _exists(String path) {
+ patch static _exists(String path) {
throw new UnsupportedError("Directory._exists");
}
patch static _create(String path) {
« no previous file with comments | « runtime/bin/directory_patch.dart ('k') | sdk/lib/io/directory_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698