Work around a VM crash, with Stdout.

BUG=

Review URL: https://codereview.chromium.org//106513005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@31258 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
ajohnsen@google.com 2013-12-19 11:53:25 +00:00
parent c23414f9df
commit ce2b8a0d21

View file

@ -164,7 +164,8 @@ class Stdin extends _StdStream implements Stream<List<int>> {
*
* Use [hasTerminal] to test if there is a terminal associated to stdout.
*/
class Stdout extends _StdSink implements IOSink {
class Stdout extends _StdSink {
// TODO(15721): Should implement IOSink (for documentation purpose).
Stdout._(IOSink sink) : super(sink);
/**