Chromium Code Reviews| 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 f8395050be92e967125cd324d86ab51e8f529945..ba0921836a17101f916c13a929a55affc9b3800e 100644 |
| --- a/lib/html/templates/immutable_list_mixin.darttemplate |
| +++ b/lib/html/templates/immutable_list_mixin.darttemplate |
| @@ -41,7 +41,7 @@ $endif |
| bool some(bool f($E element)) => _Collections.some(this, f); |
| - bool isEmpty() => this.length == 0; |
| + bool get isEmpty => this.length == 0; |
| // From List<$E>: |