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

Unified Diff: runtime/observatory/lib/src/elements/service_ref.html

Issue 1420433004: Move selector and arguments descriptor into MegamorphicCache. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: parne Created 5 years, 2 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/elements/service_ref.html
diff --git a/runtime/observatory/lib/src/elements/service_ref.html b/runtime/observatory/lib/src/elements/service_ref.html
index 839b4c5295b7fd12f2c19a0050ca77b5484ff1f3..bf73449944c6aaaccc851cd02e049cb04930fdac 100644
--- a/runtime/observatory/lib/src/elements/service_ref.html
+++ b/runtime/observatory/lib/src/elements/service_ref.html
@@ -15,7 +15,7 @@
<em>{{ ref.vmType }}</em> ({{ ref.length }})
</a>
</template>
- <template if="{{ ref.isICData }}">
+ <template if="{{ ref.isICData || ref.isMegamorphicCache }}">
<a on-click="{{ goto }}" _href="{{ url }}">
<em>{{ ref.vmType }}</em> ({{ ref.selector }})
</a>
@@ -25,7 +25,7 @@
<em>{{ ref.vmType }}</em> ({{ ref.code.name }})
</a>
</template>
- <template if="{{ !(ref.isObjectPool || ref.isICData || ref.isInstructions) }}">
+ <template if="{{ !(ref.isObjectPool || ref.isICData || ref.isMegamorphicCache || ref.isInstructions) }}">
<template if="{{ nameIsEmpty }}">
<a on-click="{{ goto }}" _href="{{ url }}"><em>{{ ref.vmType }}</em></a>
</template>
« no previous file with comments | « runtime/observatory/lib/src/elements/megamorphiccache_view.html ('k') | runtime/observatory/lib/src/service/object.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698