| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
| 6 import "dart:async"; | 6 import "dart:async"; |
| 7 import "dart:convert"; | 7 import "dart:convert"; |
| 8 import "dart:io"; | 8 import "dart:io"; |
| 9 | 9 |
| 10 callIOSink(IOSink sink) { | 10 callIOSink(IOSink sink) { |
| 11 // Call all methods on IOSink. | 11 // Call all methods on IOSink. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 26 future.then((_) { | 26 future.then((_) { |
| 27 controller = new StreamController(sync: true); | 27 controller = new StreamController(sync: true); |
| 28 controller.stream.pipe(sink); | 28 controller.stream.pipe(sink); |
| 29 controller.add([72, 101, 108]); | 29 controller.add([72, 101, 108]); |
| 30 controller.add([108, 111, 10]); | 30 controller.add([108, 111, 10]); |
| 31 controller.close(); | 31 controller.close(); |
| 32 }); | 32 }); |
| 33 } | 33 } |
| 34 | 34 |
| 35 main() { | 35 main() { |
| 36 callIOSink(stdout); | 36 callIOSink(stdout.nonBlocking); |
| 37 stdout.done.then((_) { | 37 stdout.nonBlocking.done.then((_) { |
| 38 callIOSink(stderr); | 38 callIOSink(stderr.nonBlocking); |
| 39 stderr.done.then((_) { | 39 stderr.nonBlocking.done.then((_) { |
| 40 stdout.close(); | 40 stdout.close(); |
| 41 stderr.close(); | 41 stderr.close(); |
| 42 }); | 42 }); |
| 43 }); | 43 }); |
| 44 } | 44 } |
| OLD | NEW |