| Index: runtime/lib/byte_array.dart
|
| ===================================================================
|
| --- runtime/lib/byte_array.dart (revision 15207)
|
| +++ runtime/lib/byte_array.dart (working copy)
|
| @@ -115,11 +115,11 @@
|
|
|
|
|
| abstract class _ByteArrayBase {
|
| - abstract int lengthInBytes();
|
| + int lengthInBytes();
|
|
|
| - abstract int bytesPerElement();
|
| + int bytesPerElement();
|
|
|
| - abstract operator[](int index);
|
| + operator[](int index);
|
|
|
| // Methods implementing the Collection interface.
|
|
|
| @@ -1605,7 +1605,7 @@
|
|
|
|
|
| class _ByteArrayViewBase {
|
| - abstract num operator[](int index);
|
| + num operator[](int index);
|
|
|
| // Methods implementing the Collection interface.
|
|
|
| @@ -1641,7 +1641,7 @@
|
| return this.length == 0;
|
| }
|
|
|
| - abstract int get length;
|
| + int get length;
|
|
|
| // Methods implementing the List interface.
|
|
|
|
|