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

Unified Diff: tool/input_sdk/lib/async/stream.dart

Issue 1808393002: SDK fixes (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 9 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 | « lib/runtime/dart/convert.js ('k') | tool/input_sdk/lib/internal/iterable.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/lib/async/stream.dart
diff --git a/tool/input_sdk/lib/async/stream.dart b/tool/input_sdk/lib/async/stream.dart
index c4c2c07fa89db5e559ac7ee9da8e67f023289e08..54f712b99e1d9869629029bcbe26abdf671eb021 100644
--- a/tool/input_sdk/lib/async/stream.dart
+++ b/tool/input_sdk/lib/async/stream.dart
@@ -482,7 +482,8 @@ abstract class Stream<T> {
* The `streamTransformer` can decide whether it wants to return a
* broadcast stream or not.
*/
- Stream transform(StreamTransformer<T, dynamic> streamTransformer) {
+ Stream/*<S>*/ transform/*<S>*/(
+ StreamTransformer<T, dynamic/*=S*/ > streamTransformer) {
return streamTransformer.bind(this);
}
« no previous file with comments | « lib/runtime/dart/convert.js ('k') | tool/input_sdk/lib/internal/iterable.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698