| Index: runtime/bin/vmservice/client/lib/src/observatory_elements/instance_ref.html
|
| diff --git a/runtime/bin/vmservice/client/lib/src/observatory_elements/instance_ref.html b/runtime/bin/vmservice/client/lib/src/observatory_elements/instance_ref.html
|
| deleted file mode 100644
|
| index 05beb9ea68cf511134c1bdfedff5aac16a6ec649..0000000000000000000000000000000000000000
|
| --- a/runtime/bin/vmservice/client/lib/src/observatory_elements/instance_ref.html
|
| +++ /dev/null
|
| @@ -1,66 +0,0 @@
|
| -<head>
|
| - <link rel="import" href="curly_block.html">
|
| - <link rel="import" href="observatory_element.html">
|
| - <link rel="import" href="service_ref.html">
|
| -</head>
|
| -<polymer-element name="instance-ref" extends="service-ref">
|
| - <template>
|
| - <style>
|
| - .member {
|
| - vertical-align: top;
|
| - padding: 0 0 0 1em;
|
| - }
|
| - </style>
|
| - <div>
|
| - <template if="{{ isUnexpectedRef(ref['type']) }}">
|
| - unexpected reference type <{{ ref['type'] }}>
|
| - </template>
|
| -
|
| - <template if="{{ isNullRef(ref['type']) }}">
|
| - {{ name }}
|
| - </template>
|
| -
|
| - <template if="{{ (isStringRef(ref['type']) ||
|
| - isBoolRef(ref['type']) ||
|
| - isIntRef(ref['type'])) }}">
|
| - <a href="{{ url }}">{{ name }}</a>
|
| - </template>
|
| -
|
| - <template if="{{ isClosureRef(ref['type']) }}">
|
| - <a href="{{ url }}">
|
| - {{ ref['closureFunc']['user_name'] }}
|
| - </a>
|
| - </template>
|
| -
|
| - <template if="{{ isInstanceRef(ref['type']) }}">
|
| - <a href="{{ url }}"><em>{{ ref['class']['user_name'] }}</em></a>
|
| - <curly-block callback="{{ expander() }}">
|
| - <table>
|
| - <tr template repeat="{{ field in ref['fields'] }}">
|
| - <td class="member">{{ field['decl']['user_name'] }}</td>
|
| - <td class="member">
|
| - <instance-ref app="{{ app }}" ref="{{ field['value'] }}"></instance-ref>
|
| - </td>
|
| - </tr>
|
| - </table>
|
| - </curly-block>
|
| - </template>
|
| -
|
| - <template if="{{ isListRef(ref['type']) }}">
|
| - <a href="{{ url }}"><em>{{ ref['class']['user_name'] }}</em> ({{ ref['length']}})</a>
|
| - <curly-block callback="{{ expander() }}">
|
| - <table>
|
| - <tr template repeat="{{ element in ref['elements'] }}">
|
| - <td class="member">[{{ element['index']}}]</td>
|
| - <td class="member">
|
| - <instance-ref app="{{ app }}" ref="{{ element['value'] }}"></instance-ref>
|
| - </td>
|
| - </tr>
|
| - </table>
|
| - </curly-block>
|
| - </template>
|
| -
|
| - </div>
|
| - </template>
|
| - <script type="application/dart" src="instance_ref.dart"></script>
|
| -</polymer-element>
|
|
|