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

Unified Diff: sdk/lib/_internal/pub/lib/src/pubspec.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/pubspec.dart
diff --git a/sdk/lib/_internal/pub/lib/src/pubspec.dart b/sdk/lib/_internal/pub/lib/src/pubspec.dart
index ba0df4d8669dcb4d8010f8abda81f3bb3828f316..d5b162edd02f86946d235b4fb628f120867bdf09 100644
--- a/sdk/lib/_internal/pub/lib/src/pubspec.dart
+++ b/sdk/lib/_internal/pub/lib/src/pubspec.dart
@@ -8,6 +8,7 @@ import 'package:barback/barback.dart';
import 'package:yaml/yaml.dart';
import 'package:path/path.dart' as path;
+import 'barback.dart';
import 'io.dart';
import 'package.dart';
import 'source.dart';
@@ -157,8 +158,7 @@ Pubspec _parseMap(String filePath, Map map, SourceRegistry sources) {
if (collisions.length == 1) {
packageNames = 'Package "${collisions.first}"';
} else {
- var names = collisions.toList();
- names.sort();
+ var names = ordered(collisions);
var buffer = new StringBuffer();
buffer.write("Packages ");
for (var i = 0; i < names.length; i++) {
@@ -174,6 +174,7 @@ Pubspec _parseMap(String filePath, Map map, SourceRegistry sources) {
packageNames = buffer.toString();
}
+
throw new FormatException(
'$packageNames cannot appear in both "dependencies" and '
'"dev_dependencies".');
@@ -194,14 +195,7 @@ Pubspec _parseMap(String filePath, Map map, SourceRegistry sources) {
'Transformer "$transformer" must be a string.');
}
- // Convert the concise asset name in the pubspec (of the form "package"
- // or "package/library") to an AssetId that points to an actual dart
- // file ("package/lib/package.dart" or "package/lib/library.dart",
- // respectively).
- var parts = split1(transformer, "/");
- if (parts.length == 1) parts.add(parts.single);
- var id = new AssetId(parts.first, 'lib/' + parts.last + '.dart');
-
+ var id = libraryIdentifierToId(transformer);
if (id.package != name &&
!dependencies.any((ref) => ref.name == id.package)) {
throw new FormatException('Could not find package for transformer '
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/directory_tree.dart ('k') | sdk/lib/_internal/pub/lib/src/solver/version_solver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698