Index: sdk/lib/io/buffer_list.dart |
diff --git a/sdk/lib/io/buffer_list.dart b/sdk/lib/io/buffer_list.dart |
index c61710f2fd20ca1b75e79e0079d1da6df5f87587..eab260b338936f0025595b8fa7fd02da2fb91dbf 100644 |
--- a/sdk/lib/io/buffer_list.dart |
+++ b/sdk/lib/io/buffer_list.dart |
@@ -83,6 +83,11 @@ class _BufferList { |
bool get isEmpty => _length == 0; |
/** |
+ * Returns whether the buffer list is not empty. |
+ */ |
+ bool get isNotEmpty => !isEmpty; |
+ |
+ /** |
* Clears the content of the buffer list. |
*/ |
void clear() { |