Index: sdk/lib/core/string.dart |
diff --git a/sdk/lib/core/string.dart b/sdk/lib/core/string.dart |
index 7db20f3cdc0a79d899711ad8768570336bfaf76f..3f0ad31f4bf8fba78a2e8b13feeaa6dfcaec502f 100644 |
--- a/sdk/lib/core/string.dart |
+++ b/sdk/lib/core/string.dart |
@@ -129,6 +129,11 @@ abstract class String implements Comparable<String>, Pattern { |
bool get isEmpty; |
/** |
+ * Returns whether this string is not empty. |
+ */ |
+ bool get isNotEmpty; |
+ |
+ /** |
* Creates a new string by concatenating this string with [other]. |
* |
* A sequence of strings can be concatenated by using [Iterable.join]: |