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

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

Issue 509563004: Give instances their own model class; move DartErrors out of instance-ref into their own error-ref. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase and build 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="curly_block.html"> 3 <link rel="import" href="curly_block.html">
4 <link rel="import" href="eval_box.html"> 4 <link rel="import" href="eval_box.html">
5 <link rel="import" href="field_ref.html"> 5 <link rel="import" href="field_ref.html">
6 <link rel="import" href="function_ref.html"> 6 <link rel="import" href="function_ref.html">
7 <link rel="import" href="instance_ref.html"> 7 <link rel="import" href="instance_ref.html">
8 <link rel="import" href="observatory_element.html"> 8 <link rel="import" href="observatory_element.html">
9 <link rel="import" href="library_ref.html"> 9 <link rel="import" href="library_ref.html">
10 <link rel="import" href="nav_bar.html"> 10 <link rel="import" href="nav_bar.html">
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 variables ({{ library.variables.length }}) 97 variables ({{ library.variables.length }})
98 <curly-block expand="{{ library.variables.length <= 8 }}"> 98 <curly-block expand="{{ library.variables.length <= 8 }}">
99 <div class="memberList"> 99 <div class="memberList">
100 <template repeat="{{ field in library.variables }}"> 100 <template repeat="{{ field in library.variables }}">
101 <div class="memberItem"> 101 <div class="memberItem">
102 <div class="memberName"> 102 <div class="memberName">
103 <field-ref ref="{{ field }}"></field-ref> 103 <field-ref ref="{{ field }}"></field-ref>
104 </div> 104 </div>
105 <div class="memberValue"> 105 <div class="memberValue">
106 <template if="{{ field['value'] != null }}"> 106 <template if="{{ field['value'] != null }}">
107 <instance-ref ref="{{ field['value'] }}"></instance-ref> 107 <any-service-ref ref="{{ field['value'] }}"></any-service-re f>
108 </template> 108 </template>
109 </div> 109 </div>
110 </div> 110 </div>
111 </template> 111 </template>
112 </div> 112 </div>
113 </curly-block><br> 113 </curly-block><br>
114 <br> 114 <br>
115 </template> 115 </template>
116 116
117 <template if="{{ library.functions.isNotEmpty }}"> 117 <template if="{{ library.functions.isNotEmpty }}">
(...skipping 17 matching lines...) Expand all
135 135
136 <div class="content"> 136 <div class="content">
137 <eval-box callback="{{ eval }}"></eval-box> 137 <eval-box callback="{{ eval }}"></eval-box>
138 </div> 138 </div>
139 <br><br><br><br> 139 <br><br><br><br>
140 <br><br><br><br> 140 <br><br><br><br>
141 </template> 141 </template>
142 </polymer-element> 142 </polymer-element>
143 143
144 <script type="application/dart" src="library_view.dart"></script> 144 <script type="application/dart" src="library_view.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698