Index: client/dom/generated/src/wrapping/_StyleSheetListWrappingImplementation.dart |
=================================================================== |
--- client/dom/generated/src/wrapping/_StyleSheetListWrappingImplementation.dart (revision 942) |
+++ client/dom/generated/src/wrapping/_StyleSheetListWrappingImplementation.dart (working copy) |
@@ -42,12 +42,13 @@ |
throw new UnsupportedOperationException("This object is immutable."); |
} |
- int indexOf(StyleSheet element, int startIndex) { |
- return _Lists.indexOf(this, element, startIndex, this.length); |
+ int indexOf(StyleSheet element, [int start = 0]) { |
+ return _Lists.indexOf(this, element, start, this.length); |
} |
- int lastIndexOf(StyleSheet element, int startIndex) { |
- return _Lists.lastIndexOf(this, element, startIndex); |
+ int lastIndexOf(StyleSheet element, [int start = null]) { |
+ if (start === null) start = length - 1; |
+ return _Lists.lastIndexOf(this, element, start); |
} |
int clear() { |