OLD | NEW |
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
2 <link rel="import" href="curly_block.html"> | 2 <link rel="import" href="curly_block.html"> |
3 <link rel="import" href="eval_box.html"> | 3 <link rel="import" href="eval_box.html"> |
4 <link rel="import" href="eval_link.html"> | 4 <link rel="import" href="eval_link.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="library_ref.html"> | 8 <link rel="import" href="library_ref.html"> |
9 <link rel="import" href="nav_bar.html"> | 9 <link rel="import" href="nav_bar.html"> |
10 <link rel="import" href="observatory_element.html"> | 10 <link rel="import" href="observatory_element.html"> |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 </div> | 92 </div> |
93 </div> | 93 </div> |
94 | 94 |
95 <template if="{{ cls.error != null }}"> | 95 <template if="{{ cls.error != null }}"> |
96 <error-ref ref="{{ cls.error }}"></error-ref> | 96 <error-ref ref="{{ cls.error }}"></error-ref> |
97 </template> | 97 </template> |
98 | 98 |
99 <hr> | 99 <hr> |
100 | 100 |
101 <div class="content"> | 101 <div class="content"> |
| 102 <eval-box callback="{{ evaluate }}"></eval-box> |
| 103 </div> |
| 104 |
| 105 <hr> |
| 106 |
| 107 <div class="content"> |
102 <template if="{{ cls.fields.isNotEmpty }}"> | 108 <template if="{{ cls.fields.isNotEmpty }}"> |
103 fields ({{ cls.fields.length }}) | 109 fields ({{ cls.fields.length }}) |
104 <curly-block expand="{{ cls.fields.length <= 8 }}"> | 110 <curly-block expand="{{ cls.fields.length <= 8 }}"> |
105 <div class="memberList"> | 111 <div class="memberList"> |
106 <template repeat="{{ field in cls.fields }}"> | 112 <template repeat="{{ field in cls.fields }}"> |
107 <div class="memberItem"> | 113 <div class="memberItem"> |
108 <div class="memberName"> | 114 <div class="memberName"> |
109 <field-ref ref="{{ field }}"></field-ref> | 115 <field-ref ref="{{ field }}"></field-ref> |
110 </div> | 116 </div> |
111 <div class="memberValue"> | 117 <div class="memberValue"> |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 <template if="{{ mostRetained != null }}"> | 198 <template if="{{ mostRetained != null }}"> |
193 <template repeat="{{ most in mostRetained }}"> | 199 <template repeat="{{ most in mostRetained }}"> |
194 {{ most.retainedSize | formatSize }}<instance-ref ref="{{ most
}}"></instance-ref><br> | 200 {{ most.retainedSize | formatSize }}<instance-ref ref="{{ most
}}"></instance-ref><br> |
195 </template> | 201 </template> |
196 </template> | 202 </template> |
197 </div> | 203 </div> |
198 </div> | 204 </div> |
199 </template> | 205 </template> |
200 </div> | 206 </div> |
201 | 207 |
| 208 <hr> |
| 209 |
202 <div class="content-centered-big"> | 210 <div class="content-centered-big"> |
203 <hr> | |
204 <eval-box callback="{{ evaluate }}"></eval-box> | |
205 <hr> | |
206 <script-inset script="{{ cls.script }}" | 211 <script-inset script="{{ cls.script }}" |
207 startPos="{{ cls.tokenPos }}" | 212 startPos="{{ cls.tokenPos }}" |
208 endPos="{{ cls.endTokenPos }}"> | 213 endPos="{{ cls.endTokenPos }}"> |
209 </script-inset> | 214 </script-inset> |
210 </div> | 215 </div> |
211 | 216 |
212 <view-footer></view-footer> | 217 <view-footer></view-footer> |
213 </template> | 218 </template> |
214 </polymer-element> | 219 </polymer-element> |
215 | 220 |
216 <script type="application/dart" src="class_view.dart"></script> | 221 <script type="application/dart" src="class_view.dart"></script> |
OLD | NEW |