| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 "dart:async"; | 6 import "dart:async"; |
| 6 import "dart:io"; | 7 import "dart:io"; |
| 7 | 8 |
| 8 callIOSink(IOSink sink) { | 9 callIOSink(IOSink sink) { |
| 9 // Call all methods on IOSink. | 10 // Call all methods on IOSink. |
| 10 sink.encoding = Encoding.ASCII; | 11 sink.encoding = Encoding.ASCII; |
| 11 Expect.equals(Encoding.ASCII, sink.encoding); | 12 Expect.equals(Encoding.ASCII, sink.encoding); |
| 12 sink.write("Hello\n"); | 13 sink.write("Hello\n"); |
| 13 sink.writeln("Hello"); | 14 sink.writeln("Hello"); |
| 14 sink.writeAll(["H", "e", "l", "lo\n"]); | 15 sink.writeAll(["H", "e", "l", "lo\n"]); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 31 main() { | 32 main() { |
| 32 callIOSink(stdout); | 33 callIOSink(stdout); |
| 33 stdout.done.then((_) { | 34 stdout.done.then((_) { |
| 34 callIOSink(stderr); | 35 callIOSink(stderr); |
| 35 stderr.done.then((_) { | 36 stderr.done.then((_) { |
| 36 stdout.close(); | 37 stdout.close(); |
| 37 stderr.close(); | 38 stderr.close(); |
| 38 }); | 39 }); |
| 39 }); | 40 }); |
| 40 } | 41 } |
| OLD | NEW |