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

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

Issue 20799006: Rerun go.sh (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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 | « no previous file | no next file » | 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 35fa28a6a28378989ec98ab9316740ec84ac2c2d..a4bea120c06e9e21f91e0069e2f2c5f7bd3ab07e 100644
--- a/sdk/lib/svg/dartium/svg_dartium.dart
+++ b/sdk/lib/svg/dartium/svg_dartium.dart
@@ -3435,7 +3435,7 @@ class LengthList extends NativeFieldWrapperClass1 with ListMixin<Length>, Immuta
Length operator[](int index) {
if (index < 0 || index >= length)
throw new RangeError.range(index, 0, length);
- return this.getItem(index)(index);
+ return getItem(index);
}
void operator[]=(int index, Length value) {
@@ -4024,7 +4024,7 @@ class NumberList extends NativeFieldWrapperClass1 with ListMixin<Number>, Immuta
Number operator[](int index) {
if (index < 0 || index >= length)
throw new RangeError.range(index, 0, length);
- return this.getItem(index)(index);
+ return getItem(index);
}
void operator[]=(int index, Number value) {
@@ -5094,7 +5094,7 @@ class PathSegList extends NativeFieldWrapperClass1 with ListMixin<PathSeg>, Immu
PathSeg operator[](int index) {
if (index < 0 || index >= length)
throw new RangeError.range(index, 0, length);
- return this.getItem(index)(index);
+ return getItem(index);
}
void operator[]=(int index, PathSeg value) {
@@ -6002,7 +6002,7 @@ class StringList extends NativeFieldWrapperClass1 with ListMixin<String>, Immuta
String operator[](int index) {
if (index < 0 || index >= length)
throw new RangeError.range(index, 0, length);
- return this.getItem(index)(index);
+ return getItem(index);
}
void operator[]=(int index, String value) {
@@ -7139,7 +7139,7 @@ class TransformList extends NativeFieldWrapperClass1 with ListMixin<Transform>,
Transform operator[](int index) {
if (index < 0 || index >= length)
throw new RangeError.range(index, 0, length);
- return this.getItem(index)(index);
+ return getItem(index);
}
void operator[]=(int index, Transform value) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698