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

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

Issue 2754013002: Format all dart: library files (Closed)
Patch Set: Format all dart: library files Created 3 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/io/data_transformer.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 e890fcff42947c940fe03f969e4192400ea67388..8e218b09b98ff2744ea527a4ea98699eb185fc0b 100644
--- a/sdk/lib/io/directory.dart
+++ b/sdk/lib/io/directory.dart
@@ -280,8 +280,8 @@ abstract class Directory implements FileSystemEntity {
* The result is a stream of [FileSystemEntity] objects
* for the directories, files, and links.
*/
- Stream<FileSystemEntity> list({bool recursive: false,
- bool followLinks: true});
+ Stream<FileSystemEntity> list(
+ {bool recursive: false, bool followLinks: true});
/**
* Lists the sub-directories and files of this [Directory].
@@ -303,8 +303,8 @@ abstract class Directory implements FileSystemEntity {
* Returns a [List] containing [FileSystemEntity] objects for the
* directories, files, and links.
*/
- List<FileSystemEntity> listSync({bool recursive: false,
- bool followLinks: true});
+ List<FileSystemEntity> listSync(
+ {bool recursive: false, bool followLinks: true});
/**
* Returns a human readable string for this Directory instance.
« no previous file with comments | « sdk/lib/io/data_transformer.dart ('k') | sdk/lib/io/directory_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698