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

Side by Side Diff: runtime/bin/vmservice/observatory/lib/src/elements/instance_view.html

Issue 547703002: Rework how types work in the VM Service. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js Created 6 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="class_ref.html"> 2 <link rel="import" href="class_ref.html">
3 <link rel="import" href="error_view.html"> 3 <link rel="import" href="error_view.html">
4 <link rel="import" href="eval_box.html"> 4 <link rel="import" href="eval_box.html">
5 <link rel="import" href="eval_link.html"> 5 <link rel="import" href="eval_link.html">
6 <link rel="import" href="field_ref.html"> 6 <link rel="import" href="field_ref.html">
7 <link rel="import" href="function_ref.html"> 7 <link rel="import" href="function_ref.html">
8 <link rel="import" href="inbound_reference.html"> 8 <link rel="import" href="inbound_reference.html">
9 <link rel="import" href="instance_ref.html"> 9 <link rel="import" href="instance_ref.html">
10 <link rel="import" href="observatory_element.html"> 10 <link rel="import" href="observatory_element.html">
(...skipping 13 matching lines...) Expand all
24 <nav-refresh callback="{{ refresh }}"></nav-refresh> 24 <nav-refresh callback="{{ refresh }}"></nav-refresh>
25 <nav-control></nav-control> 25 <nav-control></nav-control>
26 </nav-bar> 26 </nav-bar>
27 27
28 <template if="{{ instance.isError }}"> 28 <template if="{{ instance.isError }}">
29 <error-view error_obj="{{ instance['error'] }}"></error-view> 29 <error-view error_obj="{{ instance['error'] }}"></error-view>
30 </template> 30 </template>
31 31
32 <template if="{{ !instance.isError }}"> 32 <template if="{{ !instance.isError }}">
33 <div class="content"> 33 <div class="content">
34 <template if="{{ instance.isType }}"> 34 <template if="{{ instance.isAbstractType }}">
35 <h1>type {{ instance.name }}</h1> 35 <h1>type {{ instance.name }}</h1>
36 </template> 36 </template>
37 <template if="{{ !instance.isType }}"> 37 <template if="{{ !instance.isAbstractType }}">
38 <h1>instance of {{ instance.clazz.name }}</h1> 38 <h1>instance of {{ instance.clazz.name }}</h1>
39 </template> 39 </template>
40 40
41 <object-common object="{{ instance }}"></object-common> 41 <object-common object="{{ instance }}"></object-common>
42 42
43 <div class="memberList"> 43 <div class="memberList">
44 <div class="memberItem">&nbsp;</div> 44 <div class="memberItem">&nbsp;</div>
45 45
46 <template if="{{ instance.valueAsString != null }}"> 46 <template if="{{ instance.valueAsString != null }}">
47 <div class="memberItem"> 47 <div class="memberItem">
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 </div> 174 </div>
175 175
176 <br><br><br><br> 176 <br><br><br><br>
177 <br><br><br><br> 177 <br><br><br><br>
178 178
179 </template> 179 </template>
180 </template> 180 </template>
181 </polymer-element> 181 </polymer-element>
182 182
183 <script type="application/dart" src="instance_view.dart"></script> 183 <script type="application/dart" src="instance_view.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698