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

Side by Side Diff: sdk/lib/_internal/pub/lib/src/directory_tree.dart

Issue 18356011: Rename "pathos" package to "path". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /// A simple library for rendering a list of files as a directory tree. 5 /// A simple library for rendering a list of files as a directory tree.
6 library pub.directory_tree; 6 library pub.directory_tree;
7 7
8 import 'package:pathos/path.dart' as path; 8 import 'package:path/path.dart' as path;
9 9
10 import 'log.dart' as log; 10 import 'log.dart' as log;
11 11
12 /// Draws a directory tree for the given list of files. Given a list of files 12 /// Draws a directory tree for the given list of files. Given a list of files
13 /// like: 13 /// like:
14 /// 14 ///
15 /// TODO 15 /// TODO
16 /// example/console_example.dart 16 /// example/console_example.dart
17 /// example/main.dart 17 /// example/main.dart
18 /// example/web copy/web_example.dart 18 /// example/web copy/web_example.dart
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 buffer.write(prefix); 126 buffer.write(prefix);
127 buffer.write(_getPrefix(name == null, isLast)); 127 buffer.write(_getPrefix(name == null, isLast));
128 buffer.writeln('| (${childNames.length - 6} more...)'); 128 buffer.writeln('| (${childNames.length - 6} more...)');
129 129
130 // Show the last few. 130 // Show the last few.
131 _drawChild(false, childNames[childNames.length - 3]); 131 _drawChild(false, childNames[childNames.length - 3]);
132 _drawChild(false, childNames[childNames.length - 2]); 132 _drawChild(false, childNames[childNames.length - 2]);
133 _drawChild(true, childNames[childNames.length - 1]); 133 _drawChild(true, childNames[childNames.length - 1]);
134 } 134 }
135 } 135 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698