File tree 3 files changed +14
-7
lines changed
3 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Don’t commit the following directories created by pub.
2
2
.pub
3
+ .dart_tool /
3
4
build /
4
5
packages
5
6
.packages
Original file line number Diff line number Diff line change
1
+ ## 0.13.3
2
+
3
+ * Update the signatures of ` FilteredElementList.indexOf ` and
4
+ ` FilteredElementList.lastIndexOf ` to include type annotations.
5
+
1
6
## 0.13.2+2
2
7
3
- * Update signature for implementations of ` Iterable.singleWhere ` to include
4
- optional argument.
5
-
8
+ * Update signature for implementations of ` Iterable.singleWhere ` to include
9
+ optional argument.
10
+
6
11
## 0.13.2+1
7
12
8
- * Changed the implementation of ` Set ` and ` List ` classes to use base classes
9
- from ` dart:collection ` .
13
+ * Changed the implementation of ` Set ` and ` List ` classes to use base classes
14
+ from ` dart:collection ` .
10
15
11
16
## 0.13.2
12
17
Original file line number Diff line number Diff line change @@ -969,11 +969,12 @@ class FilteredElementList extends IterableBase<Element>
969
969
_filtered.getRange (start, end);
970
970
// TODO(sigmund): this should be typed Element, but we currently run into a
971
971
// bug where ListMixin<E>.indexOf() expects Object as the argument.
972
- int indexOf (element, [int start = 0 ]) => _filtered.indexOf (element, start);
972
+ int indexOf (Object element, [int start = 0 ]) =>
973
+ _filtered.indexOf (element, start);
973
974
974
975
// TODO(sigmund): this should be typed Element, but we currently run into a
975
976
// bug where ListMixin<E>.lastIndexOf() expects Object as the argument.
976
- int lastIndexOf (element, [int start]) {
977
+ int lastIndexOf (Object element, [int start]) {
977
978
if (start == null ) start = length - 1 ;
978
979
return _filtered.lastIndexOf (element, start);
979
980
}
You can’t perform that action at this time.
0 commit comments