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

Side by Side Diff: runtime/bin/vmservice/client/deployed/web/index_devtools.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, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html><html><head> 1 <!DOCTYPE html><html><head>
2 <title>Dart VM Observatory</title> 2 <title>Dart VM Observatory</title>
3 <meta charset="utf-8"> 3 <meta charset="utf-8">
4 4
5 5
6 6
7 7
8 8
9 9
10 10
(...skipping 13829 matching lines...) Expand 10 before | Expand all | Expand 10 after
13840 <template if="{{ path == null }}"> 13840 <template if="{{ path == null }}">
13841 <eval-link callback="{{ retainingPath }}" label="[find]" expr="1 0"> 13841 <eval-link callback="{{ retainingPath }}" label="[find]" expr="1 0">
13842 </eval-link> 13842 </eval-link>
13843 </template> 13843 </template>
13844 <template if="{{ path != null }}"> 13844 <template if="{{ path != null }}">
13845 <template repeat="{{ element in path['elements'] }}"> 13845 <template repeat="{{ element in path['elements'] }}">
13846 <div class="memberItem"> 13846 <div class="memberItem">
13847 <div class="memberName">[{{ element['index']}}]</div> 13847 <div class="memberName">[{{ element['index']}}]</div>
13848 <div class="memberValue"> 13848 <div class="memberValue">
13849 <instance-ref ref="{{ element['value'] }}"></instance-ref> 13849 <instance-ref ref="{{ element['value'] }}"></instance-ref>
13850 <template if="{{ element['parentField'] != null }}">
13851 in <field-ref ref="{{ element['parentField'] }}"></field-r ef>
13852 </template>
13853 <template if="{{ element['parentListIndex'] != null }}">
13854 at list index {{ element['parentListIndex'] }} of
13855 </template>
13850 </div> 13856 </div>
13851 </div> 13857 </div>
13852 </template> 13858 </template>
13853 <template if="{{ path['length'] > path['elements'].length }}"> 13859 <template if="{{ path['length'] > path['elements'].length }}">
13854 showing {{ path['elements'].length }} of {{ path['length'] }} 13860 showing {{ path['elements'].length }} of {{ path['length'] }}
13855 <eval-link callback="{{ retainingPath }}" label="[find more]" expr="{{ path['elements'].length * 2 }}"> 13861 <eval-link callback="{{ retainingPath }}" label="[find more]" expr="{{ path['elements'].length * 2 }}">
13856 </eval-link> 13862 </eval-link>
13857 </template> 13863 </template>
13858 </template> 13864 </template>
13859 </div> 13865 </div>
(...skipping 3718 matching lines...) Expand 10 before | Expand all | Expand 10 after
17578 } 17584 }
17579 </style> 17585 </style>
17580 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a> 17586 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a>
17581 </template> 17587 </template>
17582 </polymer-element> 17588 </polymer-element>
17583 17589
17584 17590
17585 17591
17586 <observatory-application devtools="true"></observatory-application> 17592 <observatory-application devtools="true"></observatory-application>
17587 17593
17588 <script src="index_devtools.html_bootstrap.dart.js" async=""></script></body></h tml> 17594 <script type="application/dart" src="index_devtools.html_bootstrap.dart"></scrip t><script src="packages/browser/dart.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698