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

Unified Diff: sdk/lib/io/directory_impl.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 | « sdk/lib/_internal/lib/io_patch.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/directory_impl.dart
diff --git a/sdk/lib/io/directory_impl.dart b/sdk/lib/io/directory_impl.dart
index dd789c7235ba003951a57ab9b5479df3fa64c4a8..00c04509f90e9ccfdb9ddc59fa9cd81951afb25f 100644
--- a/sdk/lib/io/directory_impl.dart
+++ b/sdk/lib/io/directory_impl.dart
@@ -18,7 +18,7 @@ class _Directory extends FileSystemEntity implements Directory {
external static _setCurrent(path);
external static _createTemp(String path);
external static String _systemTemp();
- external static int _exists(String path);
+ external static _exists(String path);
external static _create(String path);
external static _deleteNative(String path, bool recursive);
external static _rename(String path, String newPath);
« no previous file with comments | « sdk/lib/_internal/lib/io_patch.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698