Index: sdk/lib/core/map.dart |
diff --git a/sdk/lib/core/map.dart b/sdk/lib/core/map.dart |
index de3807f766be81f55171b59bca3291ad29167fb8..fe68fd844ee39e60090c0b26091c21f06a58d709 100644 |
--- a/sdk/lib/core/map.dart |
+++ b/sdk/lib/core/map.dart |
@@ -93,4 +93,9 @@ abstract class Map<K, V> { |
* Returns true if there is no {key, value} pair in the map. |
*/ |
bool get isEmpty; |
+ |
+ /** |
+ * Returns true if there is at least one {key, value} pair in the map. |
+ */ |
+ bool get isNotEmpty; |
} |