Index: sdk/lib/_collection_dev/list.dart |
diff --git a/sdk/lib/_collection_dev/list.dart b/sdk/lib/_collection_dev/list.dart |
index c14cb502a6be53e582ff8bfeda6da28424a32bc3..90a1d1643f200a62bb4ead6893c883ae5a02fd6a 100644 |
--- a/sdk/lib/_collection_dev/list.dart |
+++ b/sdk/lib/_collection_dev/list.dart |
@@ -238,6 +238,7 @@ class ListMapView<E> implements Map<int, E> { |
Iterable<int> get keys => new _ListIndicesIterable(_values); |
bool get isEmpty => _values.isEmpty; |
+ bool get isNotEmpty => _values.isNotEmpty; |
bool containsValue(E value) => _values.contains(value); |
bool containsKey(int key) => key is int && key >= 0 && key < length; |