| Index: lib/html/templates/html/impl/impl_DocumentFragment.darttemplate
|
| diff --git a/lib/html/templates/html/impl/impl_DocumentFragment.darttemplate b/lib/html/templates/html/impl/impl_DocumentFragment.darttemplate
|
| index 7437934aa7bb3726b29f2e6075ab9140d92dc78f..9cb9236b532cb9ce8debd856f7eb848dcbe96a06 100644
|
| --- a/lib/html/templates/html/impl/impl_DocumentFragment.darttemplate
|
| +++ b/lib/html/templates/html/impl/impl_DocumentFragment.darttemplate
|
| @@ -84,7 +84,7 @@ class _FilteredElementList implements List {
|
| Collection<Element> filter(bool f(Element element)) => _filtered.filter(f);
|
| bool every(bool f(Element element)) => _filtered.every(f);
|
| bool some(bool f(Element element)) => _filtered.some(f);
|
| - bool isEmpty() => _filtered.isEmpty();
|
| + bool get isEmpty => _filtered.isEmpty;
|
| int get length => _filtered.length;
|
| Element operator [](int index) => _filtered[index];
|
| Iterator<Element> iterator() => _filtered.iterator();
|
|
|