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

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

Issue 1463123002: - Display a pseudo-receiver for static function activations. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month 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/instance_ref.html
diff --git a/runtime/observatory/lib/src/elements/instance_ref.html b/runtime/observatory/lib/src/elements/instance_ref.html
index 57dcec9be02985352c5ae91c7546e1c5af50a081..e4c0e8419ccff29013435a7edaed2773b8da2d51 100644
--- a/runtime/observatory/lib/src/elements/instance_ref.html
+++ b/runtime/observatory/lib/src/elements/instance_ref.html
@@ -87,6 +87,9 @@
expandKey="{{ makeExpandKey(index.toString()) }}">
</any-service-ref><br>
</template>
+ <template if="{{ ref.length != ref.elements.length }}">
+ <div><em>{{ ref.length - ref.elements.length }} omitted elements</em></div>
+ </template>
</div>
</curly-block>
</template>
@@ -103,6 +106,9 @@
expandKey="{{ makeExpandKey('value') }}">
</any-service-ref><br>
</template>
+ <template if="{{ ref.length != ref.association.length }}">
+ <div><em>{{ ref.length - ref.association.length }} omitted association</em></div>
+ </template>
</div>
</curly-block>
</template>
@@ -115,6 +121,9 @@
[ {{ index }} ]&nbsp;&nbsp;
{{ ref.typedElements[index].toString() }}<br>
</template>
+ <template if="{{ ref.length != ref.typedElements.length }}">
+ <div><em>{{ ref.length - ref.typedElements.length }} omitted elements</em></div>
+ </template>
</div>
</curly-block>
</template>
« no previous file with comments | « runtime/observatory/lib/src/elements/flag_list.html ('k') | runtime/observatory/lib/src/elements/instance_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698