Index: pkg/dartdoc/lib/src/mirrors/util.dart |
diff --git a/pkg/dartdoc/lib/src/mirrors/util.dart b/pkg/dartdoc/lib/src/mirrors/util.dart |
index c73f5c8649a419a6ee321bdcc810aa220a561629..02ca591d75d5f4c748214ef12a9a49598d142dda 100644 |
--- a/pkg/dartdoc/lib/src/mirrors/util.dart |
+++ b/pkg/dartdoc/lib/src/mirrors/util.dart |
@@ -57,7 +57,7 @@ abstract class AbstractMap<K,V> implements Map<K,V> { |
return values; |
} |
- bool isEmpty() => length == 0; |
+ bool get isEmpty => length == 0; |
V putIfAbsent(K key, V ifAbsent()) { |
if (!containsKey(key)) { |
V value = this[key]; |