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

Unified Diff: utils/pub/validator.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « utils/pub/utils.dart ('k') | utils/pub/validator/directory.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/validator.dart
diff --git a/utils/pub/validator.dart b/utils/pub/validator.dart
index 63a2386c07290ae3525efe93bc063900ce7e1e0c..70f5a9ffa24041516d974630a760b95aea26953f 100644
--- a/utils/pub/validator.dart
+++ b/utils/pub/validator.dart
@@ -55,10 +55,13 @@ abstract class Validator {
// 3356, which causes a bug if all validators are (synchronously) using
// Future.immediate and an error is thrown before a handler is set up.
return sleep(0).chain((_) {
- return Futures.wait(validators.map((validator) => validator.validate()));
- }).transform((_) {
- var errors = flatten(validators.map((validator) => validator.errors));
- var warnings = flatten(validators.map((validator) => validator.warnings));
+ return Futures.wait(
+ validators.mappedBy((validator) => validator.validate()));
+ }).then((_) {
+ var errors =
+ flatten(validators.mappedBy((validator) => validator.errors));
+ var warnings =
+ flatten(validators.mappedBy((validator) => validator.warnings));
if (!errors.isEmpty) {
log.error("Missing requirements:");
« no previous file with comments | « utils/pub/utils.dart ('k') | utils/pub/validator/directory.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698