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

Unified Diff: pkg/analyzer/lib/task/model.dart

Issue 1422793002: Use LIBRARY_SPECIFIC_UNITS instead of UNITS. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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
Index: pkg/analyzer/lib/task/model.dart
diff --git a/pkg/analyzer/lib/task/model.dart b/pkg/analyzer/lib/task/model.dart
index 4c8fac51f72c5075580f54cf0bf07d7b135213f0..791f8327fba27085fc85918b229dfc5a7da0a596 100644
--- a/pkg/analyzer/lib/task/model.dart
+++ b/pkg/analyzer/lib/task/model.dart
@@ -342,6 +342,13 @@ abstract class ListResultDescriptor<E> implements ResultDescriptor<List<E>> {
*/
abstract class ListTaskInput<E> extends TaskInput<List<E>> {
/**
+ * Return a task input that can be used to compute a flatten list whose
+ * elements are combined [subListResult]'s associated with those elements.
+ */
+ ListTaskInput /*<V>*/ toFlattenListOf(
+ ListResultDescriptor /*<V>*/ subListResult);
+
+ /**
* Return a task input that can be used to compute a list whose elements are
* the result of passing the elements of this input to the [mapper] function.
*/

Powered by Google App Engine
This is Rietveld 408576698