| 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 "package:expect/expect.dart"; |
| 6 import 'dart:convert'; | 6 import 'dart:convert'; |
| 7 | 7 |
| 8 class MySink extends ChunkedConversionSink<String> { | 8 class MySink extends ChunkedConversionSink<String> { |
| 9 final Function _add; | 9 final Function _add; |
| 10 final Function _close; | 10 final Function _close; |
| 11 | 11 |
| 12 MySink(this._add, this._close); | 12 MySink(this._add, this._close); |
| 13 | 13 |
| 14 void add(x) { _add(x); } | 14 void add(x) { |
| 15 void close() { _close(); } | 15 _add(x); |
| 16 } |
| 17 |
| 18 void close() { |
| 19 _close(); |
| 20 } |
| 16 } | 21 } |
| 17 | 22 |
| 18 main() { | 23 main() { |
| 19 // Make sure the UTF-8 decoder works eagerly. | 24 // Make sure the UTF-8 decoder works eagerly. |
| 20 String lastString; | 25 String lastString; |
| 21 bool isClosed = false; | 26 bool isClosed = false; |
| 22 ChunkedConversionSink sink = new MySink((x) => lastString = x, | 27 ChunkedConversionSink sink = |
| 23 () => isClosed = true); | 28 new MySink((x) => lastString = x, () => isClosed = true); |
| 24 var byteSink = new Utf8Decoder().startChunkedConversion(sink); | 29 var byteSink = new Utf8Decoder().startChunkedConversion(sink); |
| 25 byteSink.add("abc".codeUnits); | 30 byteSink.add("abc".codeUnits); |
| 26 Expect.equals("abc", lastString); | 31 Expect.equals("abc", lastString); |
| 27 byteSink.add([0x61, 0xc3]); // 'a' followed by first part of Î. | 32 byteSink.add([0x61, 0xc3]); // 'a' followed by first part of Î. |
| 28 Expect.equals("a", lastString); | 33 Expect.equals("a", lastString); |
| 29 byteSink.add([0x8e]); // second part of Î. | 34 byteSink.add([0x8e]); // second part of Î. |
| 30 Expect.equals("Î", lastString); | 35 Expect.equals("Î", lastString); |
| 31 Expect.isFalse(isClosed); | 36 Expect.isFalse(isClosed); |
| 32 byteSink.close(); | 37 byteSink.close(); |
| 33 Expect.isTrue(isClosed); | 38 Expect.isTrue(isClosed); |
| 34 } | 39 } |
| OLD | NEW |