Chromium Code Reviews| 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; |