Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Unified Diff: sdk/lib/svg/dartium/svg_dartium.dart

Issue 13528004: Remove addLast from List. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove typo Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | sdk/lib/web_sql/dart2js/web_sql_dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.");
}
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | sdk/lib/web_sql/dart2js/web_sql_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698