| Index: lib/html/templates/immutable_list_mixin.darttemplate
|
| diff --git a/lib/html/templates/immutable_list_mixin.darttemplate b/lib/html/templates/immutable_list_mixin.darttemplate
|
| index d72fc5d1f84179d2eaeb58666f8b292f17a23cef..b28feebb1ff2467ef4900a5a08fdd81e0eb20e11 100644
|
| --- a/lib/html/templates/immutable_list_mixin.darttemplate
|
| +++ b/lib/html/templates/immutable_list_mixin.darttemplate
|
| @@ -53,7 +53,7 @@ $endif
|
| _Lists.indexOf(this, element, start, this.length);
|
|
|
| int lastIndexOf($E element, [int start]) {
|
| - if (start === null) start = length - 1;
|
| + if (start == null) start = length - 1;
|
| return _Lists.lastIndexOf(this, element, start);
|
| }
|
|
|
|
|