Chromium Code Reviews| Index: pkg/compiler/lib/src/util/maplet.dart |
| diff --git a/pkg/compiler/lib/src/util/maplet.dart b/pkg/compiler/lib/src/util/maplet.dart |
| index 086273c45e03383553cfdc65a0601b4ac6e712d2..7aaf7c11b9559a730b246efed455cbe06bb44728 100644 |
| --- a/pkg/compiler/lib/src/util/maplet.dart |
| +++ b/pkg/compiler/lib/src/util/maplet.dart |
| @@ -7,8 +7,8 @@ library dart2js.util.maplet; |
| import 'dart:collection' show MapBase, IterableBase; |
| class Maplet<K, V> extends MapBase<K, V> { |
| - static const _MARKER = const _MapletMarker(); |
| - static const CAPACITY = 8; |
| + static const dynamic _MARKER = const _MapletMarker(); |
|
Emily Fortuna
2017/06/14 17:42:51
remove dynamic here and move it down to line 25?
ahe
2017/06/14 18:27:23
Done.
|
| + static const int CAPACITY = 8; |
| // The maplet can be in one of four states: |
| // |