Index: runtime/lib/mirrors_impl.dart |
diff --git a/runtime/lib/mirrors_impl.dart b/runtime/lib/mirrors_impl.dart |
index 13bb7a992d10f9789422ee65b04f5fb45146d5ed..89b7f0581bd505f1084e83d346642d45da5d043f 100644 |
--- a/runtime/lib/mirrors_impl.dart |
+++ b/runtime/lib/mirrors_impl.dart |
@@ -299,10 +299,10 @@ class _LocalInstanceMirror extends _LocalObjectMirror |
return identityHashCode(_reflectee) ^ 0x36363636; |
} |
- static var _getFieldClosures = new LRUMap.withShift(7); |
- static var _setFieldClosures = new LRUMap.withShift(7); |
- static var _getFieldCallCounts = new LRUMap.withShift(8); |
- static var _setFieldCallCounts = new LRUMap.withShift(8); |
+ static var _getFieldClosures = new LRUMap.withShift(9); |
+ static var _setFieldClosures = new LRUMap.withShift(9); |
+ static var _getFieldCallCounts = new LRUMap.withShift(10); |
+ static var _setFieldCallCounts = new LRUMap.withShift(10); |
static const _closureThreshold = 20; |
_getFieldSlow(unwrapped) { |