| Index: runtime/bin/vmservice/observatory/deployed/web/index.html
|
| diff --git a/runtime/bin/vmservice/observatory/deployed/web/index.html b/runtime/bin/vmservice/observatory/deployed/web/index.html
|
| index 1f573ad74f2c9e311f4bb94d5b5ca37dd73c7084..8b368eb6b24c80c9dd27cc28ac4d9b3fb6245387 100644
|
| --- a/runtime/bin/vmservice/observatory/deployed/web/index.html
|
| +++ b/runtime/bin/vmservice/observatory/deployed/web/index.html
|
| @@ -925,11 +925,16 @@ hr {
|
| <div title="{{ hoverText }}">{{ ref.valueAsString }}</div>
|
| </template>
|
|
|
| - <template if="{{ ref.isString || ref.isBool || ref.isInt ||
|
| + <template if="{{ ref.isBool || ref.isInt ||
|
| ref.isDouble || ref.isNull }}">
|
| <a on-click="{{ goto }}" _href="{{ url }}">{{ ref.valueAsString }}</a>
|
| </template>
|
|
|
| + <template if="{{ ref.isString }}">
|
| + <a on-click="{{ goto }}" _href="{{ url }}">{{ asStringLiteral(ref.valueAsString, ref.valueAsStringIsTruncated) }}</a>
|
| + </template>
|
| +
|
| +
|
| <template if="{{ ref.isAbstractType }}">
|
| <a on-click="{{ goto }}" _href="{{ url }}">{{ ref.name }}</a>
|
| </template>
|
| @@ -15497,6 +15502,13 @@ hr {
|
| </div>
|
| </template>
|
|
|
| + <template if="{{ instance.isString }}">
|
| + <div class="memberItem">
|
| + <div class="memberName">valueAsLiteral</div>
|
| + <div class="memberValue"> {{ asStringLiteral(instance.valueAsString, instance.valueAsStringIsTruncated) }}</div>
|
| + </div>
|
| + </template>
|
| +
|
| <template if="{{ instance.isMirrorReference }}">
|
| <div class="memberItem">
|
| <div class="memberName">referent</div>
|
|
|