| Index: packages/html/lib/src/utils.dart
|
| diff --git a/packages/html/lib/src/utils.dart b/packages/html/lib/src/utils.dart
|
| index fb58cf144f94edb1aef5cc6aaef5f27d38162bbd..16837b03db03f0d4b8aa6f7b31bcaef73a6dfb7d 100644
|
| --- a/packages/html/lib/src/utils.dart
|
| +++ b/packages/html/lib/src/utils.dart
|
| @@ -43,7 +43,7 @@ bool startsWithAny(String str, List<String> prefixes) {
|
| }
|
|
|
| // Like the python [:] operator.
|
| -List slice(List list, int start, [int end]) {
|
| +List/*<T>*/ slice/*<T>*/(List/*<T>*/ list, int start, [int end]) {
|
| if (end == null) end = list.length;
|
| if (end < 0) end += list.length;
|
|
|
|
|