| Index: lib/utf/utf16.dart
|
| diff --git a/lib/utf/utf16.dart b/lib/utf/utf16.dart
|
| index 87ede26393690c77d5e13206b6e696112c6ee8fd..f451dbf6851793571eead339bd5bb6fe7e5a330c 100644
|
| --- a/lib/utf/utf16.dart
|
| +++ b/lib/utf/utf16.dart
|
| @@ -292,13 +292,13 @@ class Utf16BytesToCodeUnitsDecoder implements _ListRangeIterator {
|
| }
|
| }
|
|
|
| - int get position() => utf16EncodedBytesIterator.position ~/ 2;
|
| + int get position => utf16EncodedBytesIterator.position ~/ 2;
|
|
|
| void backup([int by = 1]) {
|
| utf16EncodedBytesIterator.backup(2 * by);
|
| }
|
|
|
| - int get remaining() => (utf16EncodedBytesIterator.remaining + 1) ~/ 2;
|
| + int get remaining => (utf16EncodedBytesIterator.remaining + 1) ~/ 2;
|
|
|
| void skip([int count = 1]) {
|
| utf16EncodedBytesIterator.skip(2 * count);
|
|
|