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

Unified Diff: sdk/lib/svg/dart2js/svg_dart2js.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/html/html_common/filtered_element_list.dart ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/svg/dart2js/svg_dart2js.dart
diff --git a/sdk/lib/svg/dart2js/svg_dart2js.dart b/sdk/lib/svg/dart2js/svg_dart2js.dart
index dea8a56e81ecd77ba25c42d9554d989ff32ff426..4a8b38e226ba0b6e6344d94785f8ab1540c59243 100644
--- a/sdk/lib/svg/dart2js/svg_dart2js.dart
+++ b/sdk/lib/svg/dart2js/svg_dart2js.dart
@@ -3134,10 +3134,6 @@ class LengthList implements JavaScriptIndexingBehavior, List<Length> native "*SV
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.");
}
@@ -3772,10 +3768,6 @@ class NumberList implements JavaScriptIndexingBehavior, List<Number> native "*SV
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.");
}
@@ -4686,10 +4678,6 @@ class PathSegList implements JavaScriptIndexingBehavior, List<PathSeg> native "*
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.");
}
@@ -5585,10 +5573,6 @@ class StringList implements JavaScriptIndexingBehavior, List<String> native "*SV
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.");
}
@@ -6761,10 +6745,6 @@ class TransformList implements List<Transform>, JavaScriptIndexingBehavior nativ
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.");
}
@@ -7292,10 +7272,6 @@ class _ElementInstanceList implements JavaScriptIndexingBehavior, List<ElementIn
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/html/html_common/filtered_element_list.dart ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698