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

Unified Diff: runtime/lib/integers.dart

Issue 11238035: Make isEmpty a getter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status file with co19 issue number. Created 8 years, 2 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
« no previous file with comments | « runtime/lib/immutable_map.dart ('k') | runtime/lib/string_base.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/integers.dart
diff --git a/runtime/lib/integers.dart b/runtime/lib/integers.dart
index 897bea96f3aa2d74ff6189cf0292b363370cbf34..cdf43b3fe73a7cb631f45689b2303bbd6f559da9 100644
--- a/runtime/lib/integers.dart
+++ b/runtime/lib/integers.dart
@@ -168,7 +168,7 @@ class _IntegerImplementation {
value ~/= radix;
temp.add(digit);
}
- if (temp.isEmpty()) {
+ if (temp.isEmpty) {
return "0";
}
StringBuffer buffer = new StringBuffer();
« no previous file with comments | « runtime/lib/immutable_map.dart ('k') | runtime/lib/string_base.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698