Chromium Code Reviews| Index: pkg/compiler/lib/src/util/setlet.dart |
| diff --git a/pkg/compiler/lib/src/util/setlet.dart b/pkg/compiler/lib/src/util/setlet.dart |
| index c9d3fe53987a625c34e23caa0e4c77fca472e2f4..5259fb3d3cbb39704e4b2360e9c7db02d3811c50 100644 |
| --- a/pkg/compiler/lib/src/util/setlet.dart |
| +++ b/pkg/compiler/lib/src/util/setlet.dart |
| @@ -7,8 +7,8 @@ library dart2js.util.setlet; |
| import 'dart:collection' show IterableBase; |
| class Setlet<E> extends IterableBase<E> implements Set<E> { |
| - static const _MARKER = const _SetletMarker(); |
| - static const CAPACITY = 8; |
| + static const dynamic _MARKER = const _SetletMarker(); |
|
Emily Fortuna
2017/06/14 17:42:52
remove the dynamic here and move dynamic to line b
ahe
2017/06/14 18:27:23
Done.
|
| + static const int CAPACITY = 8; |
| // The setlet can be in one of four states: |
| // |