| 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 d3d5f25af6ab76f0e7c06ba5ed75eadf5e8b06b5..7fd447db601f084a42c4af8c0cd2b350bb4ad983 100644
|
| --- a/runtime/bin/vmservice/observatory/deployed/web/index.html
|
| +++ b/runtime/bin/vmservice/observatory/deployed/web/index.html
|
| @@ -2928,12 +2928,12 @@ hr {
|
| <template if="{{ ref['static'] }}">static</template>
|
| <template if="{{ ref['final'] }}">final</template>
|
| <template if="{{ ref['const'] }}">const</template>
|
| - <template if="{{ (ref['declared_type']['name'] == 'dynamic' &&
|
| + <template if="{{ (ref['declaredType'].name == 'dynamic' &&
|
| !ref['final'] && !ref['const']) }}">
|
| var
|
| </template>
|
| - <template if="{{ (ref['declared_type']['name'] != 'dynamic') }}">
|
| - <instance-ref ref="{{ ref['declared_type'] }}"></instance-ref>
|
| + <template if="{{ (ref['declaredType'].name != 'dynamic') }}">
|
| + <instance-ref ref="{{ ref['declaredType'] }}"></instance-ref>
|
| </template>
|
| <a on-click="{{ goto }}" title="{{ hoverText }}" href="{{ url }}">{{ name }}</a>
|
| </span>
|
| @@ -5580,7 +5580,7 @@ hr {
|
| <template if="{{ field['owner'].serviceType == 'Library' }}">
|
| <library-nav-menu library="{{ field['owner'] }}"></library-nav-menu>
|
| </template>
|
| - <nav-menu link="{{ field.link }}" anchor="{{ field['user_name'] }}" last="{{ true }}"></nav-menu>
|
| + <nav-menu link="{{ field.link }}" anchor="{{ field.name }}" last="{{ true }}"></nav-menu>
|
| <nav-refresh callback="{{ refresh }}"></nav-refresh>
|
| <nav-control></nav-control>
|
| </nav-bar>
|
| @@ -5590,14 +5590,14 @@ hr {
|
| <template if="{{ field['static'] }}">static</template>
|
| <template if="{{ field['final'] }}">final</template>
|
| <template if="{{ field['const'] }}">const</template>
|
| - <template if="{{ (field['declared_type']['name'] == 'dynamic' &&
|
| + <template if="{{ (field['declaredType'].name == 'dynamic' &&
|
| !field['final'] && !field['const']) }}">
|
| var
|
| </template>
|
| - <template if="{{ (field['declared_type']['user_name'] != 'dynamic') }}">
|
| - {{ field['declared_type']['user_name'] }}
|
| + <template if="{{ (field['declaredType'].name != 'dynamic') }}">
|
| + {{ field['declaredType'].name }}
|
| </template>
|
| - {{ field['user_name'] }}
|
| + {{ field.name }}
|
| </h1>
|
| <div class="memberList">
|
| <div class="memberItem">
|
| @@ -5621,19 +5621,19 @@ hr {
|
| <div class="memberItem" title="The types observed for this field at runtime. Fields that are observed to have a single type at runtime or to never be null may allow for additional optimization.">
|
| <div class="memberName">observed types</div>
|
| <div class="memberValue">
|
| - <template if="{{ field['guard_class'] == 'dynamic' }}">
|
| + <template if="{{ field['guardClass'] == 'dynamic' }}">
|
| various
|
| </template>
|
| - <template if="{{ field['guard_class'] == 'unknown' }}">
|
| + <template if="{{ field['guardClass'] == 'unknown' }}">
|
| none
|
| </template>
|
| - <template if="{{ field['guard_class'] != 'unknown' &&
|
| - field['guard_class'] != 'dynamic' }}">
|
| - <class-ref ref="{{ field['guard_class'] }}"></class-ref>
|
| - <template if="{{ field['guard_nullable'] }}">
|
| + <template if="{{ field['guardClass'] != 'unknown' &&
|
| + field['guardClass'] != 'dynamic' }}">
|
| + <class-ref ref="{{ field['guardClass'] }}"></class-ref>
|
| + <template if="{{ field['guardNullable'] }}">
|
| — null observed
|
| </template>
|
| - <template if="{{ !field['guard_nullable'] }}">
|
| + <template if="{{ !field['guardNullable'] }}">
|
| — null not observed
|
| </template>
|
| </template>
|
| @@ -5665,6 +5665,7 @@ hr {
|
|
|
|
|
|
|
| +
|
| <polymer-element name="stack-frame" extends="observatory-element">
|
| <template>
|
| <style>
|
|
|