| Index: runtime/observatory/lib/src/models/objects/megamorphiccache.dart
|
| diff --git a/runtime/observatory/lib/src/models/objects/megamorphiccache.dart b/runtime/observatory/lib/src/models/objects/megamorphiccache.dart
|
| index a87fb48746287d0f091b6788bfe79572a7a03b8e..74657de00133db4ffd7ef4f8c6a0c50aedd3c66c 100644
|
| --- a/runtime/observatory/lib/src/models/objects/megamorphiccache.dart
|
| +++ b/runtime/observatory/lib/src/models/objects/megamorphiccache.dart
|
| @@ -7,3 +7,10 @@ part of models;
|
| abstract class MegamorphicCacheRef extends ObjectRef {
|
| String get selector;
|
| }
|
| +
|
| +abstract class MegamorphicCache extends Object implements MegamorphicCacheRef {
|
| + String get selector;
|
| + int get mask;
|
| + InstanceRef get buckets;
|
| + InstanceRef get argumentsDescriptor;
|
| +}
|
|
|