| Index: runtime/observatory/lib/src/elements/objectpool_view.html
|
| diff --git a/runtime/observatory/lib/src/elements/objectpool_view.html b/runtime/observatory/lib/src/elements/objectpool_view.html
|
| index d358fea69bc43c5bdf48b469e4596a27c40ed465..4177eeabfe714116d068d0425484ec1767e11414 100644
|
| --- a/runtime/observatory/lib/src/elements/objectpool_view.html
|
| +++ b/runtime/observatory/lib/src/elements/objectpool_view.html
|
| @@ -28,19 +28,19 @@
|
|
|
| entries ({{ pool.entries.length }})
|
| <div class="memberList">
|
| - <template repeat="{{ index in pool.entries.asMap().keys }}">
|
| + <template repeat="{{ entry in pool.entries }}">
|
| <div class="memberItem">
|
| - <div class="memberName">[{{ index }}]</div>
|
| + <div class="memberName">[PP+0x{{ entry['offset'].toRadixString(16) }}]</div>
|
| <div class="memberValue">
|
| - <template if="{{ isServiceObject(pool.entries[index]) }}">
|
| - <any-service-ref ref="{{ pool.entries[index] }}">
|
| + <template if="{{ entry['kind'] == 'Object' }}">
|
| + <any-service-ref ref="{{ entry['value'] }}">
|
| </any-service-ref>
|
| </template>
|
| - <template if="{{ !isServiceObject(pool.entries[index]) }}">
|
| - {{ pool.entries[index] }}
|
| - <template if="{{ annotatedEntries != null && annotatedEntries[index] != null }}">
|
| - (<any-service-ref ref="{{ annotatedEntries[index] }}"></any-service-ref>)
|
| - </template>
|
| + <template if="{{ entry['kind'] == 'Immediate' }}">
|
| + Immediate 0x{{ entry['value'].toRadixString(16) }}
|
| + </template>
|
| + <template if="{{ entry['kind'] == 'NativeEntry' }}">
|
| + NativeEntry 0x{{ entry['value'].toRadixString(16) }}
|
| </template>
|
| </div>
|
| </div>
|
|
|