Chromium Code Reviews| Index: sdk/lib/async/stream.dart |
| diff --git a/sdk/lib/async/stream.dart b/sdk/lib/async/stream.dart |
| index 5dae80290008abad69a35e647cad83b085ea79e7..23f482cda00b27033d46559c8a532ea40289d2f3 100644 |
| --- a/sdk/lib/async/stream.dart |
| +++ b/sdk/lib/async/stream.dart |
| @@ -1495,7 +1495,7 @@ abstract class EventSink<T> implements Sink<T> { |
| class StreamView<T> extends Stream<T> { |
| final Stream<T> _stream; |
| - StreamView(this._stream); |
| + const StreamView(this._stream) : super._internal(); |
|
kevmoo
2016/02/11 21:19:56
Please update changelog, too
Lasse Reichstein Nielsen
2016/02/11 22:04:49
Consider making the public parameter name be "stre
floitsch
2016/02/12 19:29:16
Done.
floitsch
2016/02/12 19:29:16
Done.
|
| bool get isBroadcast => _stream.isBroadcast; |