| Index: runtime/tests/vm/dart/byte_array_test.dart
|
| diff --git a/runtime/tests/vm/dart/byte_array_test.dart b/runtime/tests/vm/dart/byte_array_test.dart
|
| index c418e56d69ee66893ab6bff97c1435f45a57ce95..c45696bbe7ee141203bcff91d67088847cef4ee9 100644
|
| --- a/runtime/tests/vm/dart/byte_array_test.dart
|
| +++ b/runtime/tests/vm/dart/byte_array_test.dart
|
| @@ -28,21 +28,21 @@ class ByteArrayTest {
|
| Expect.throws(() { array[10] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { array.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.insertRange(0, array.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeRange(0, array.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < array.length; ++i) {
|
| array[i] = 1 + i;
|
| }
|
| @@ -112,21 +112,21 @@ class ByteArrayTest {
|
| Expect.throws(() { array[10] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { array.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.insertRange(0, array.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeRange(0, array.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < array.length; ++i) {
|
| array[i] = 1 + i;
|
| }
|
| @@ -184,21 +184,21 @@ class ByteArrayTest {
|
| Expect.throws(() { array[10] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { array.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.insertRange(0, array.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeRange(0, array.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < array.length; ++i) {
|
| array[i] = 1 + i;
|
| }
|
| @@ -268,21 +268,21 @@ class ByteArrayTest {
|
| Expect.throws(() { array[10] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { array.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.insertRange(0, array.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeRange(0, array.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < array.length; ++i) {
|
| array[i] = 1 + i;
|
| }
|
| @@ -340,21 +340,21 @@ class ByteArrayTest {
|
| Expect.throws(() { array[10] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { array.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.insertRange(0, array.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeRange(0, array.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < array.length; ++i) {
|
| array[i] = 1 + i;
|
| }
|
| @@ -430,21 +430,21 @@ class ByteArrayTest {
|
| Expect.throws(() { array[10] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { array.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.insertRange(0, array.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeRange(0, array.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < array.length; ++i) {
|
| array[i] = 1 + i;
|
| }
|
| @@ -505,21 +505,21 @@ class ByteArrayTest {
|
| Expect.throws(() { array[10] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { array.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.insertRange(0, array.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeRange(0, array.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < array.length; ++i) {
|
| array[i] = 1 + i;
|
| }
|
| @@ -596,21 +596,21 @@ class ByteArrayTest {
|
| Expect.throws(() { array[10] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { array.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.insertRange(0, array.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeRange(0, array.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < array.length; ++i) {
|
| array[i] = 1 + i;
|
| }
|
| @@ -671,21 +671,21 @@ class ByteArrayTest {
|
| Expect.throws(() { array[10] = 0.0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { array.add(0.0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addLast(0.0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.insertRange(0, array.length, 0.0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeRange(0, array.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < array.length; ++i) {
|
| array[i] = 1.0 + i;
|
| }
|
| @@ -733,21 +733,21 @@ class ByteArrayTest {
|
| Expect.throws(() { array[10] = 0.0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { array.add(0.0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addLast(0.0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.insertRange(0, array.length, 0.0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeRange(0, array.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < array.length; ++i) {
|
| array[i] = 1.0 + i;
|
| }
|
| @@ -968,21 +968,21 @@ class ByteArrayTest {
|
| Expect.throws(() { view[10] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { view.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.insertRange(0, view.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeRange(0, view.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < view.length; ++i) {
|
| view[i] = 1 + i;
|
| }
|
| @@ -1096,21 +1096,21 @@ class ByteArrayTest {
|
| Expect.throws(() { view[view.length] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { view.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.insertRange(0, view.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeRange(0, view.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < view.length; ++i) {
|
| view[i] = 1 + i;
|
| }
|
| @@ -1203,21 +1203,21 @@ class ByteArrayTest {
|
| Expect.throws(() { view[10] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { view.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.insertRange(0, view.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeRange(0, view.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < view.length; ++i) {
|
| view[i] = 1 + i;
|
| }
|
| @@ -1338,21 +1338,21 @@ class ByteArrayTest {
|
| Expect.throws(() { view[view.length] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { view.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.insertRange(0, view.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeRange(0, view.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < view.length; ++i) {
|
| view[i] = 1 + i;
|
| }
|
| @@ -1450,21 +1450,21 @@ class ByteArrayTest {
|
| Expect.throws(() { view[10] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { view.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.insertRange(0, view.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeRange(0, view.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < view.length; ++i) {
|
| view[i] = 1 + i;
|
| }
|
| @@ -1609,21 +1609,21 @@ class ByteArrayTest {
|
| Expect.throws(() { view[view.length] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { view.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.insertRange(0, view.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeRange(0, view.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < view.length; ++i) {
|
| view[i] = 1 + i;
|
| }
|
| @@ -1738,21 +1738,21 @@ class ByteArrayTest {
|
| Expect.throws(() { view[10] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { view.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.insertRange(0, view.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeRange(0, view.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < view.length; ++i) {
|
| view[i] = 1 + i;
|
| }
|
| @@ -1937,21 +1937,21 @@ class ByteArrayTest {
|
| Expect.throws(() { view[view.length] = 0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { view.add(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.addLast(0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.insertRange(0, view.length, 0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { view.removeRange(0, view.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < view.length; ++i) {
|
| view[i] = 1 + i;
|
| }
|
| @@ -2091,21 +2091,21 @@ class ByteArrayTest {
|
| Expect.throws(() { view[10] = 0.0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { array.add(0.0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addLast(0.0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.insertRange(0, array.length, 0.0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeRange(0, array.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < view.length; ++i) {
|
| view[i] = 1.0 + i;
|
| }
|
| @@ -2194,21 +2194,21 @@ class ByteArrayTest {
|
| Expect.throws(() { view[10] = 0.0; },
|
| (e) { return e is IndexOutOfRangeException; });
|
| Expect.throws(() { array.add(0.0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addAll([0]); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.addLast(0.0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.clear(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.insertRange(0, array.length, 0.0); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.length = 0; },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeLast(); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| Expect.throws(() { array.removeRange(0, array.length - 1); },
|
| - (e) { return e is UnsupportedOperationException; });
|
| + (e) { return e is StateError; });
|
| for (int i = 0; i < view.length; ++i) {
|
| view[i] = 1.0 + i;
|
| }
|
|
|