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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/class_view.html

Issue 348043003: Observatory: Fix bug in field overview of a class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: add deployed/ 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 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="curly_block.html"> 2 <link rel="import" href="curly_block.html">
3 <link rel="import" href="eval_box.html"> 3 <link rel="import" href="eval_box.html">
4 <link rel="import" href="eval_link.html"> 4 <link rel="import" href="eval_link.html">
5 <link rel="import" href="field_ref.html"> 5 <link rel="import" href="field_ref.html">
6 <link rel="import" href="function_ref.html"> 6 <link rel="import" href="function_ref.html">
7 <link rel="import" href="instance_ref.html"> 7 <link rel="import" href="instance_ref.html">
8 <link rel="import" href="library_ref.html"> 8 <link rel="import" href="library_ref.html">
9 <link rel="import" href="nav_bar.html"> 9 <link rel="import" href="nav_bar.html">
10 <link rel="import" href="observatory_element.html"> 10 <link rel="import" href="observatory_element.html">
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 92
93 <template if="{{ cls.error != null }}"> 93 <template if="{{ cls.error != null }}">
94 <!-- TODO(turnidge): Don't use instance-ref for error display here --> 94 <!-- TODO(turnidge): Don't use instance-ref for error display here -->
95 <instance-ref ref="{{ cls.error }}"></instance-ref> 95 <instance-ref ref="{{ cls.error }}"></instance-ref>
96 </template> 96 </template>
97 97
98 <hr> 98 <hr>
99 99
100 <div class="content"> 100 <div class="content">
101 <template if="{{ cls.fields.isNotEmpty }}"> 101 <template if="{{ cls.fields.isNotEmpty }}">
102 fields ({{ cls['fields'].length }}) 102 fields ({{ cls.fields.length }})
103 <curly-block expand="{{ cls.fields.length <= 8 }}"> 103 <curly-block expand="{{ cls.fields.length <= 8 }}">
104 <div class="memberList"> 104 <div class="memberList">
105 <template repeat="{{ field in cls.fields }}"> 105 <template repeat="{{ field in cls.fields }}">
106 <div class="memberItem"> 106 <div class="memberItem">
107 <div class="memberName"> 107 <div class="memberName">
108 <field-ref ref="{{ field }}"></field-ref> 108 <field-ref ref="{{ field }}"></field-ref>
109 </div> 109 </div>
110 <div class="memberValue"> 110 <div class="memberValue">
111 <template if="{{ field['value'] != null }}"> 111 <template if="{{ field['value'] != null }}">
112 <instance-ref ref="{{ field['value'] }}"></instance-ref> 112 <instance-ref ref="{{ field['value'] }}"></instance-ref>
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 185
186 <div class="content"> 186 <div class="content">
187 <eval-box callback="{{ eval }}"></eval-box> 187 <eval-box callback="{{ eval }}"></eval-box>
188 </div> 188 </div>
189 <br><br><br><br> 189 <br><br><br><br>
190 <br><br><br><br> 190 <br><br><br><br>
191 </template> 191 </template>
192 </polymer-element> 192 </polymer-element>
193 193
194 <script type="application/dart" src="class_view.dart"></script> 194 <script type="application/dart" src="class_view.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698