diff --git a/lib/dom.dart b/lib/dom.dart index 8a8f74d..2e57f64 100644 --- a/lib/dom.dart +++ b/lib/dom.dart @@ -969,7 +969,8 @@ class FilteredElementList extends IterableBase _filtered.getRange(start, end); // TODO(sigmund): this should be typed Element, but we currently run into a // bug where ListMixin.indexOf() expects Object as the argument. - int indexOf(Object element, [int start = 0]) => _filtered.indexOf(element, start); + int indexOf(Object element, [int start = 0]) => + _filtered.indexOf(element, start); // TODO(sigmund): this should be typed Element, but we currently run into a // bug where ListMixin.lastIndexOf() expects Object as the argument.