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

Unified Diff: sdk/lib/_internal/pub/lib/src/directory_tree.dart

Issue 23924006: Detect transformer dependency cycles in packages using barback transformers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes 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
Index: sdk/lib/_internal/pub/lib/src/directory_tree.dart
diff --git a/sdk/lib/_internal/pub/lib/src/directory_tree.dart b/sdk/lib/_internal/pub/lib/src/directory_tree.dart
index ad67e26df87fdfe1142a3aa8cbaefa481268ac8c..b0d07109b622751316d2ffc306f8c3717460a54d 100644
--- a/sdk/lib/_internal/pub/lib/src/directory_tree.dart
+++ b/sdk/lib/_internal/pub/lib/src/directory_tree.dart
@@ -7,6 +7,8 @@ library pub.directory_tree;
import 'package:path/path.dart' as path;
+import 'utils.dart';
+
/// Draws a directory tree for the given list of files. Given a list of files
/// like:
///
@@ -101,8 +103,7 @@ void _draw(StringBuffer buffer, String prefix, bool isLast,
if (name != null) _drawLine(buffer, prefix, isLast, name);
// Recurse to the children.
- var childNames = new List.from(children.keys);
- childNames.sort();
+ var childNames = ordered(children.keys);
_drawChild(bool isLastChild, String child) {
var childPrefix = _getPrefix(name == null, isLast);
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/barback/load_all_transformers.dart ('k') | sdk/lib/_internal/pub/lib/src/pubspec.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698