| Index: lib/utf/utf32.dart
|
| diff --git a/lib/utf/utf32.dart b/lib/utf/utf32.dart
|
| index 819e1684db63cb38fcdcbc79bc8a01a534db386a..8ef448295bd94555310b1bca1f648d1b72830d45 100644
|
| --- a/lib/utf/utf32.dart
|
| +++ b/lib/utf/utf32.dart
|
| @@ -248,13 +248,13 @@ class Utf32BytesDecoder implements _ListRangeIterator {
|
| }
|
| }
|
|
|
| - int get position() => utf32EncodedBytesIterator.position ~/ 4;
|
| + int get position => utf32EncodedBytesIterator.position ~/ 4;
|
|
|
| void backup([int by = 1]) {
|
| utf32EncodedBytesIterator.backup(4 * by);
|
| }
|
|
|
| - int get remaining() => (utf32EncodedBytesIterator.remaining + 3) ~/ 4;
|
| + int get remaining => (utf32EncodedBytesIterator.remaining + 3) ~/ 4;
|
|
|
| void skip([int count = 1]) {
|
| utf32EncodedBytesIterator.skip(4 * count);
|
|
|