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

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

Issue 1157003003: Add TypedData instance kinds. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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 unified diff | Download patch
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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 </div> 192 </div>
193 <div class="memberValue"> 193 <div class="memberValue">
194 <any-service-ref ref="{{ association['value'] }}"></any-serv ice-ref> 194 <any-service-ref ref="{{ association['value'] }}"></any-serv ice-ref>
195 </div> 195 </div>
196 </div> 196 </div>
197 </template> 197 </template>
198 </div> 198 </div>
199 </curly-block><br><br> 199 </curly-block><br><br>
200 </template> 200 </template>
201 201
202 <template if="{{ instance.typedElements.isNotEmpty }}">
203 elements ({{ instance.typedElements.length }})
204 <curly-block expand="{{ instance.typedElements.length <= 100 }}">
205 <div class="memberList">
206 <template repeat="{{ index in instance.typedElements.asMap().keys }}">
207 <div class="memberItem">
208 <div class="memberName">[{{ index }}]</div>
209 <div class="memberValue">{{ instance.typedElements[index].toSt ring() }}</div>
210 </div>
211 </template>
212 </div>
213 </curly-block><br><br>
214 </template>
215
202 </div> 216 </div>
203 217
204 </template> 218 </template>
205 <view-footer></view-footer> 219 <view-footer></view-footer>
206 </template> 220 </template>
207 </polymer-element> 221 </polymer-element>
208 222
209 <script type="application/dart" src="instance_view.dart"></script> 223 <script type="application/dart" src="instance_view.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/instance_ref.html ('k') | runtime/observatory/lib/src/service/object.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698