| Index: sdk/lib/svg/dartium/svg_dartium.dart
|
| diff --git a/sdk/lib/svg/dartium/svg_dartium.dart b/sdk/lib/svg/dartium/svg_dartium.dart
|
| index b6fc12e72193e88708fa11e47867e6bcf70d6cdf..a837e5bdb50112906f5deb2fc1bbe61bd8de3d10 100644
|
| --- a/sdk/lib/svg/dartium/svg_dartium.dart
|
| +++ b/sdk/lib/svg/dartium/svg_dartium.dart
|
| @@ -3397,10 +3397,6 @@ class LengthList extends NativeFieldWrapperClass1 implements List<Length> {
|
| throw new UnsupportedError("Cannot add to immutable List.");
|
| }
|
|
|
| - void addLast(Length value) {
|
| - throw new UnsupportedError("Cannot add to immutable List.");
|
| - }
|
| -
|
| void addAll(Iterable<Length> iterable) {
|
| throw new UnsupportedError("Cannot add to immutable List.");
|
| }
|
| @@ -4112,10 +4108,6 @@ class NumberList extends NativeFieldWrapperClass1 implements List<Number> {
|
| throw new UnsupportedError("Cannot add to immutable List.");
|
| }
|
|
|
| - void addLast(Number value) {
|
| - throw new UnsupportedError("Cannot add to immutable List.");
|
| - }
|
| -
|
| void addAll(Iterable<Number> iterable) {
|
| throw new UnsupportedError("Cannot add to immutable List.");
|
| }
|
| @@ -5303,10 +5295,6 @@ class PathSegList extends NativeFieldWrapperClass1 implements List<PathSeg> {
|
| throw new UnsupportedError("Cannot add to immutable List.");
|
| }
|
|
|
| - void addLast(PathSeg value) {
|
| - throw new UnsupportedError("Cannot add to immutable List.");
|
| - }
|
| -
|
| void addAll(Iterable<PathSeg> iterable) {
|
| throw new UnsupportedError("Cannot add to immutable List.");
|
| }
|
| @@ -6299,10 +6287,6 @@ class StringList extends NativeFieldWrapperClass1 implements List<String> {
|
| throw new UnsupportedError("Cannot add to immutable List.");
|
| }
|
|
|
| - void addLast(String value) {
|
| - throw new UnsupportedError("Cannot add to immutable List.");
|
| - }
|
| -
|
| void addAll(Iterable<String> iterable) {
|
| throw new UnsupportedError("Cannot add to immutable List.");
|
| }
|
| @@ -7564,10 +7548,6 @@ class TransformList extends NativeFieldWrapperClass1 implements List<Transform>
|
| throw new UnsupportedError("Cannot add to immutable List.");
|
| }
|
|
|
| - void addLast(Transform value) {
|
| - throw new UnsupportedError("Cannot add to immutable List.");
|
| - }
|
| -
|
| void addAll(Iterable<Transform> iterable) {
|
| throw new UnsupportedError("Cannot add to immutable List.");
|
| }
|
| @@ -8149,10 +8129,6 @@ class _ElementInstanceList extends NativeFieldWrapperClass1 implements List<Elem
|
| throw new UnsupportedError("Cannot add to immutable List.");
|
| }
|
|
|
| - void addLast(ElementInstance value) {
|
| - throw new UnsupportedError("Cannot add to immutable List.");
|
| - }
|
| -
|
| void addAll(Iterable<ElementInstance> iterable) {
|
| throw new UnsupportedError("Cannot add to immutable List.");
|
| }
|
|
|