blob: 1f3d1423aa284d8f3d3d28eb029b83091e60c234 [file] [log] [blame]
/*
* Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion final bool isBroadcast
* Reports whether this stream is a broadcast stream.
* @description Checks true is returned for a broadcast stream.
* @author kaigorodov
*/
import "dart:async";
import "../../../Utils/expect.dart";
class MyStream<T> extends Stream<T> {
StreamSubscription<T> listen(void onData(T event),
{void onError(error), void onDone(), bool cancelOnError})
{
return null;
}
}
main() {
Stream s=new MyStream().asBroadcastStream();
Expect.isTrue(s.isBroadcast);
}