| Index: lib/compiler/implementation/lib/constant_map.dart
|
| diff --git a/lib/compiler/implementation/lib/constant_map.dart b/lib/compiler/implementation/lib/constant_map.dart
|
| index a6ed640c651ec6ef23d1cc6f6d3558af61371945..3e340335be29b4d5651e95d4b7d3f47d94437518 100644
|
| --- a/lib/compiler/implementation/lib/constant_map.dart
|
| +++ b/lib/compiler/implementation/lib/constant_map.dart
|
| @@ -36,7 +36,7 @@ class ConstantMap<V> implements Map<String, V> {
|
| return result;
|
| }
|
|
|
| - bool isEmpty() => length == 0;
|
| + bool get isEmpty => length == 0;
|
|
|
| String toString() => Maps.mapToString(this);
|
|
|
|
|