| OLD | NEW |
| 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="field_ref.html"> | 4 <link rel="import" href="field_ref.html"> |
| 5 <link rel="import" href="function_ref.html"> | 5 <link rel="import" href="function_ref.html"> |
| 6 <link rel="import" href="inbound_reference.html"> | 6 <link rel="import" href="inbound_reference.html"> |
| 7 <link rel="import" href="instance_ref.html"> | 7 <link rel="import" href="instance_ref.html"> |
| 8 <link rel="import" href="observatory_element.html"> | 8 <link rel="import" href="observatory_element.html"> |
| 9 <link rel="import" href="object_common.html"> | 9 <link rel="import" href="object_common.html"> |
| 10 <link rel="import" href="nav_bar.html"> | 10 <link rel="import" href="nav_bar.html"> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 <div class="memberList"> | 30 <div class="memberList"> |
| 31 <template repeat="{{ index in pool.entries.asMap().keys }}"> | 31 <template repeat="{{ index in pool.entries.asMap().keys }}"> |
| 32 <div class="memberItem"> | 32 <div class="memberItem"> |
| 33 <div class="memberName">[{{ index }}]</div> | 33 <div class="memberName">[{{ index }}]</div> |
| 34 <div class="memberValue"> | 34 <div class="memberValue"> |
| 35 <template if="{{ isServiceObject(pool.entries[index]) }}"> | 35 <template if="{{ isServiceObject(pool.entries[index]) }}"> |
| 36 <any-service-ref ref="{{ pool.entries[index] }}"> | 36 <any-service-ref ref="{{ pool.entries[index] }}"> |
| 37 </any-service-ref> | 37 </any-service-ref> |
| 38 </template> | 38 </template> |
| 39 <template if="{{ !isServiceObject(pool.entries[index]) }}"> | 39 <template if="{{ !isServiceObject(pool.entries[index]) }}"> |
| 40 0x{{ pool.entries[index].toRadixString(16) }} | 40 {{ pool.entries[index] }} |
| 41 <template if="{{ annotatedEntries != null && annotatedEntries[in
dex] != null }}"> | 41 <template if="{{ annotatedEntries != null && annotatedEntries[in
dex] != null }}"> |
| 42 (<any-service-ref ref="{{ annotatedEntries[index] }}"></any-se
rvice-ref>) | 42 (<any-service-ref ref="{{ annotatedEntries[index] }}"></any-se
rvice-ref>) |
| 43 </template> | 43 </template> |
| 44 </template> | 44 </template> |
| 45 </div> | 45 </div> |
| 46 </div> | 46 </div> |
| 47 </template> | 47 </template> |
| 48 </div> | 48 </div> |
| 49 | 49 |
| 50 </div> | 50 </div> |
| 51 | 51 |
| 52 <hr> | 52 <hr> |
| 53 <view-footer></view-footer> | 53 <view-footer></view-footer> |
| 54 </template> | 54 </template> |
| 55 </polymer-element> | 55 </polymer-element> |
| 56 | 56 |
| 57 <script type="application/dart" src="objectpool_view.dart"></script> | 57 <script type="application/dart" src="objectpool_view.dart"></script> |
| OLD | NEW |