Chromium Code Reviews| Index: runtime/bin/vmservice/observatory/lib/src/elements/instance_ref.html |
| diff --git a/runtime/bin/vmservice/observatory/lib/src/elements/instance_ref.html b/runtime/bin/vmservice/observatory/lib/src/elements/instance_ref.html |
| index efb70402d5785dd73be2d21f1f56619335f68f27..245996e2eeb578e54a1f004319904e8f221453ca 100644 |
| --- a/runtime/bin/vmservice/observatory/lib/src/elements/instance_ref.html |
| +++ b/runtime/bin/vmservice/observatory/lib/src/elements/instance_ref.html |
| @@ -18,30 +18,31 @@ |
| } |
| </style> |
| <span> |
| - <template if="{{ isError(ref.serviceType) }}"> |
| - <pre class="errorBox">{{ ref.message }}</pre> |
| + <template if="{{ isError(ref) }}"> |
| + <pre class="errorBox">{{ ref.message }}</pre> |
| </template> |
| - <template if="{{ isUnexpected(ref.serviceType) }}"> |
| + <template if="{{ isUnexpected(ref) }}"> |
| unexpected reference type <{{ ref.serviceType }}> |
| </template> |
| - <template if="{{ isNull(ref.serviceType) }}"> |
| + <template if="{{ isPseduoNull(ref) }}"> |
|
turnidge
2014/08/27 16:13:56
Pseduo is tpyed worng.
|
| <div title="{{ hoverText }}">{{ ref['valueAsString'] }}</div> |
| </template> |
| - <template if="{{ (isString(ref.serviceType) || |
| - isBool(ref.serviceType) || |
| - isInt(ref.serviceType)) || |
| - isDouble(ref.serviceType)) }}"> |
| + <template if="{{ (isString(ref) || |
| + isBool(ref) || |
| + isNull(ref) || |
| + isInt(ref)) || |
| + isDouble(ref)) }}"> |
| <a on-click="{{ goto }}" href="{{ url }}">{{ ref['valueAsString'] }}</a> |
| </template> |
| - <template if="{{ (isType(ref.serviceType)) }}"> |
| + <template if="{{ (isType(ref)) }}"> |
| <a on-click="{{ goto }}" href="{{ url }}">{{ ref['user_name'] }}</a> |
| </template> |
| - <template if="{{ isInstance(ref.serviceType) && |
| + <template if="{{ isInstance(ref) && |
| ref['closureFunc'] != null}}"> |
| <a on-click="{{ goto }}" href="{{ url }}"> |
| <!-- TODO(turnidge): Switch this to fully-qualified function --> |
| @@ -49,7 +50,7 @@ |
| </a> |
| </template> |
| - <template if="{{ isInstance(ref.serviceType) && |
| + <template if="{{ isInstance(ref) && |
| ref['closureFunc'] == null}}"> |
| <a on-click="{{ goto }}" href="{{ url }}"><em>{{ ref['class'].name }}</em></a> |
| <curly-block callback="{{ expander() }}"> |
| @@ -68,7 +69,7 @@ |
| </curly-block> |
| </template> |
| - <template if="{{ isList(ref.serviceType) }}"> |
| + <template if="{{ isList(ref) }}"> |
| <a on-click="{{ goto }}" href="{{ url }}"><em>{{ ref['class'].name }}</em> ({{ ref['length']}})</a> |
| <curly-block callback="{{ expander() }}"> |
| <div class="memberList"> |