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

Unified Diff: utils/pub/io.dart

Issue 11644058: Add a small note to a TODO. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/io.dart
diff --git a/utils/pub/io.dart b/utils/pub/io.dart
index ab0b1efe892a198c497f6c59a7b4e7f3d53242eb..8b53575ac7c1fe08d53985ffb65f95955f59b9b2 100644
--- a/utils/pub/io.dart
+++ b/utils/pub/io.dart
@@ -272,7 +272,9 @@ Future<List<String>> listDir(dir,
file = join(dir, basename(file));
contents.add(file);
- // TODO(nweiz): don't manually recurse once issue 7358 is fixed.
+ // TODO(nweiz): don't manually recurse once issue 7358 is fixed. Note that
+ // once we remove the manual recursion, we'll need to explicitly filter
+ // out files in hidden directories.
if (recursive) {
children.add(doList(new Directory(file), listedDirectories));
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698