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

Unified Diff: sdk/lib/io/directory.dart

Issue 24645002: added bool type to named args in lib/io and lib/_internal (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: long line Created 7 years, 3 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/pub/lib/src/io.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/io/directory.dart
diff --git a/sdk/lib/io/directory.dart b/sdk/lib/io/directory.dart
index 8e4cf12ab7aaa66f17e48f0f8620d05b2b8d2db0..671064cccc48554c9e38f40be249285242996e92 100644
--- a/sdk/lib/io/directory.dart
+++ b/sdk/lib/io/directory.dart
@@ -54,7 +54,7 @@ abstract class Directory implements FileSystemEntity {
* directory once it has been created. If the directory cannot be
* created the future completes with an exception.
*/
- Future<Directory> create({recursive: false});
+ Future<Directory> create({bool recursive: false});
/**
* Synchronously creates the directory with this name.
@@ -65,7 +65,7 @@ abstract class Directory implements FileSystemEntity {
*
* If the directory cannot be created an exception is thrown.
*/
- void createSync({recursive: false});
+ void createSync({bool recursive: false});
/**
* Creates a temporary directory with a name based on the current
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/io.dart ('k') | sdk/lib/io/directory_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698