Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 directory_tree; | 6 library directory_tree; |
| 7 | 7 |
| 8 import '../../pkg/pathos/lib/path.dart' as path; | 8 import 'package:pathos/path.dart' as path; |
|
Bob Nystrom
2013/03/26 01:55:44
Newline.
nweiz
2013/03/26 02:09:53
Done.
| |
| 9 import 'log.dart' as log; | 9 import 'log.dart' as log; |
| 10 | 10 |
| 11 /// Draws a directory tree for the given list of files. Given a list of files | 11 /// Draws a directory tree for the given list of files. Given a list of files |
| 12 /// like: | 12 /// like: |
| 13 /// | 13 /// |
| 14 /// TODO | 14 /// TODO |
| 15 /// example/console_example.dart | 15 /// example/console_example.dart |
| 16 /// example/main.dart | 16 /// example/main.dart |
| 17 /// example/web copy/web_example.dart | 17 /// example/web copy/web_example.dart |
| 18 /// test/absolute_test.dart | 18 /// test/absolute_test.dart |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 123 buffer.write(prefix); | 123 buffer.write(prefix); |
| 124 buffer.write(_getPrefix(name == null, isLast)); | 124 buffer.write(_getPrefix(name == null, isLast)); |
| 125 buffer.writeln('| (${childNames.length - 6} more...)'); | 125 buffer.writeln('| (${childNames.length - 6} more...)'); |
| 126 | 126 |
| 127 // Show the last few. | 127 // Show the last few. |
| 128 _drawChild(false, childNames[childNames.length - 3]); | 128 _drawChild(false, childNames[childNames.length - 3]); |
| 129 _drawChild(false, childNames[childNames.length - 2]); | 129 _drawChild(false, childNames[childNames.length - 2]); |
| 130 _drawChild(true, childNames[childNames.length - 1]); | 130 _drawChild(true, childNames[childNames.length - 1]); |
| 131 } | 131 } |
| 132 } | 132 } |
| OLD | NEW |