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

Unified Diff: lib/html/scripts/idlparser.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 | « lib/html/dartium/html_dartium.dart ('k') | lib/html/scripts/idlrenderer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/scripts/idlparser.dart
diff --git a/lib/html/scripts/idlparser.dart b/lib/html/scripts/idlparser.dart
index 186d1530fa201e23e771b4048ee3a4fba694269b..11ecad3338a157206f0186f38c2b7bb6355af39a 100644
--- a/lib/html/scripts/idlparser.dart
+++ b/lib/html/scripts/idlparser.dart
@@ -177,7 +177,7 @@ class IDLDictNode {
bool has(String key) => map.containsKey(key);
formatMap() {
- if (map.isEmpty())
+ if (map.isEmpty)
return '';
StringBuffer sb = new StringBuffer();
map.forEach((k, v) {
« no previous file with comments | « lib/html/dartium/html_dartium.dart ('k') | lib/html/scripts/idlrenderer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698