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

Unified Diff: runtime/bin/vmservice/client/lib/src/elements/instance_view.html

Issue 350403005: Include parent field/list index in retaining path. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 6 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/bin/vmservice/client/lib/src/elements/instance_view.html
===================================================================
--- runtime/bin/vmservice/client/lib/src/elements/instance_view.html (revision 37949)
+++ runtime/bin/vmservice/client/lib/src/elements/instance_view.html (working copy)
@@ -81,6 +81,12 @@
<div class="memberName">[{{ element['index']}}]</div>
<div class="memberValue">
<instance-ref ref="{{ element['value'] }}"></instance-ref>
+ <template if="{{ element['parentField'] != null }}">
+ in <field-ref ref="{{ element['parentField'] }}"></field-ref>
+ </template>
+ <template if="{{ element['parentListIndex'] != null }}">
+ at list index {{ element['parentListIndex'] }} of
+ </template>
</div>
</div>
</template>

Powered by Google App Engine
This is Rietveld 408576698