Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(968)

Unified Diff: runtime/bin/vmservice/observatory/deployed/web/index.html

Issue 488233003: More service api cleanup. camelCasePropertyNames (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js, etc. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/bin/vmservice/observatory/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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' &amp;&amp;
+ <template if="{{ (ref['declaredType'].name == 'dynamic' &amp;&amp;
!ref['final'] &amp;&amp; !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' &amp;&amp;
+ <template if="{{ (field['declaredType'].name == 'dynamic' &amp;&amp;
!field['final'] &amp;&amp; !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' &amp;&amp;
- field['guard_class'] != 'dynamic' }}">
- <class-ref ref="{{ field['guard_class'] }}"></class-ref>
- <template if="{{ field['guard_nullable'] }}">
+ <template if="{{ field['guardClass'] != 'unknown' &amp;&amp;
+ 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>
« no previous file with comments | « no previous file | runtime/bin/vmservice/observatory/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698