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

Side by Side Diff: runtime/observatory/lib/src/elements/instance_view.html

Issue 1102993002: Fix showing values of instance fields. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="class_ref.html"> 2 <link rel="import" href="class_ref.html">
3 <link rel="import" href="error_view.html"> 3 <link rel="import" href="error_view.html">
4 <link rel="import" href="eval_box.html"> 4 <link rel="import" href="eval_box.html">
5 <link rel="import" href="eval_link.html"> 5 <link rel="import" href="eval_link.html">
6 <link rel="import" href="field_ref.html"> 6 <link rel="import" href="field_ref.html">
7 <link rel="import" href="function_ref.html"> 7 <link rel="import" href="function_ref.html">
8 <link rel="import" href="inbound_reference.html"> 8 <link rel="import" href="inbound_reference.html">
9 <link rel="import" href="instance_ref.html"> 9 <link rel="import" href="instance_ref.html">
10 <link rel="import" href="observatory_element.html"> 10 <link rel="import" href="observatory_element.html">
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 <template if="{{ instance.fields.isNotEmpty }}"> 143 <template if="{{ instance.fields.isNotEmpty }}">
144 fields ({{ instance.fields.length }}) 144 fields ({{ instance.fields.length }})
145 <curly-block expand="{{ instance.fields.length <= 8 }}"> 145 <curly-block expand="{{ instance.fields.length <= 8 }}">
146 <div class="memberList"> 146 <div class="memberList">
147 <template repeat="{{ field in instance.fields }}"> 147 <template repeat="{{ field in instance.fields }}">
148 <div class="memberItem"> 148 <div class="memberItem">
149 <div class="memberName"> 149 <div class="memberName">
150 <field-ref ref="{{ field['decl'] }}"></field-ref> 150 <field-ref ref="{{ field['decl'] }}"></field-ref>
151 </div> 151 </div>
152 <div class="memberValue"> 152 <div class="memberValue">
153 <any-service-ref ref="{{ field.value }}"></any-service-ref> 153 <any-service-ref ref="{{ field['value'] }}"></any-service-re f>
154 </div> 154 </div>
155 </div> 155 </div>
156 </template> 156 </template>
157 </div> 157 </div>
158 </curly-block><br><br> 158 </curly-block><br><br>
159 </template> 159 </template>
160 160
161 <template if="{{ instance.elements.isNotEmpty }}"> 161 <template if="{{ instance.elements.isNotEmpty }}">
162 elements ({{ instance.elements.length }}) 162 elements ({{ instance.elements.length }})
163 <curly-block expand="{{ instance.elements.length <= 8 }}"> 163 <curly-block expand="{{ instance.elements.length <= 8 }}">
(...skipping 18 matching lines...) Expand all
182 </div> 182 </div>
183 183
184 <br><br><br><br> 184 <br><br><br><br>
185 <br><br><br><br> 185 <br><br><br><br>
186 186
187 </template> 187 </template>
188 </template> 188 </template>
189 </polymer-element> 189 </polymer-element>
190 190
191 <script type="application/dart" src="instance_view.dart"></script> 191 <script type="application/dart" src="instance_view.dart"></script>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698