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

Unified Diff: sdk/lib/_internal/pub/lib/src/barback/load_all_transformers.dart

Issue 26057002: Fix the names of some tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | « no previous file | sdk/lib/_internal/pub/test/transformer/dart2js/does_not_compile_if_disabled_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/barback/load_all_transformers.dart
diff --git a/sdk/lib/_internal/pub/lib/src/barback/load_all_transformers.dart b/sdk/lib/_internal/pub/lib/src/barback/load_all_transformers.dart
index a03ce3acb8c881fe167871a39347b108fc2b045c..ac4ec0925ddaaa2c3954122da2d467299e909606 100644
--- a/sdk/lib/_internal/pub/lib/src/barback/load_all_transformers.dart
+++ b/sdk/lib/_internal/pub/lib/src/barback/load_all_transformers.dart
@@ -177,7 +177,7 @@ ApplicationException _cycleError(PackageGraph graph, String dependee,
pairs(path).map((pair) {
var transformers = unionAll(graph.packages[pair.first].pubspec.transformers)
.where((id) => id.asset.package == pair.last)
- .map(idToLibraryIdentifier).toList();
+ .map((id) => idToLibraryIdentifier(id.asset)).toList();
if (transformers.isEmpty) {
return " ${pair.first} depends on ${pair.last}";
} else {
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/test/transformer/dart2js/does_not_compile_if_disabled_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698