Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(473)

Unified Diff: runtime/observatory/lib/src/models/objects/megamorphiccache.dart

Issue 2279203003: Converted Observatory megamorphiccache-view element (Closed)
Patch Set: Updated observatory_sources.gypi Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
+}

Powered by Google App Engine
This is Rietveld 408576698