Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Unified Diff: runtime/lib/string_patch.dart

Issue 15263004: Adding isNotEmpty property to collection and string. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rename hasElement to isNotEmpty Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/lib/string_patch.dart
diff --git a/runtime/lib/string_patch.dart b/runtime/lib/string_patch.dart
index dbe8dc03ee2bb269a54219b75282051ae9a74fd6..0707a5fdaa91fdfe3aadb824fb138661470385bc 100644
--- a/runtime/lib/string_patch.dart
+++ b/runtime/lib/string_patch.dart
@@ -70,6 +70,8 @@ class _StringBase {
return this.length == 0;
}
+ bool get isNotEmpty => !isEmpty;
+
String operator +(String other) native "String_concat";
String concat(String other) => this + other;

Powered by Google App Engine
This is Rietveld 408576698