| Index: lib/utf/utf32.dart
|
| diff --git a/lib/utf/utf32.dart b/lib/utf/utf32.dart
|
| index 6f1176862bc6d23543e54314751322be51cf2e83..b217563652be165b5f1e7270811f3d57418aca9b 100644
|
| --- a/lib/utf/utf32.dart
|
| +++ b/lib/utf/utf32.dart
|
| @@ -181,7 +181,7 @@ bool hasUtf32leBom(List<int> utf32EncodedBytes, [int offset = 0, int length]) {
|
| class IterableUtf32Decoder implements Iterable<int> {
|
| final Function codeunitsProvider;
|
|
|
| - IterableUtf32Decoder._(Function this.codeunitsProvider);
|
| + IterableUtf32Decoder._(this.codeunitsProvider);
|
|
|
| Utf32BytesDecoder iterator() => codeunitsProvider();
|
| }
|
| @@ -194,8 +194,7 @@ class Utf32BytesDecoder implements _ListRangeIterator {
|
| final int replacementCodepoint;
|
|
|
| Utf32BytesDecoder._fromListRangeIterator(
|
| - _ListRangeIterator this.utf32EncodedBytesIterator,
|
| - int this.replacementCodepoint);
|
| + this.utf32EncodedBytesIterator, this.replacementCodepoint);
|
|
|
| factory Utf32BytesDecoder(List<int> utf32EncodedBytes, [
|
| int offset = 0, int length,
|
|
|