| 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 | 92 |
| 93 <template if="{{ cls.error != null }}"> | 93 <template if="{{ cls.error != null }}"> |
| 94 <!-- TODO(turnidge): Don't use instance-ref for error display here --> | 94 <!-- TODO(turnidge): Don't use instance-ref for error display here --> |
| 95 <instance-ref ref="{{ cls.error }}"></instance-ref> | 95 <instance-ref ref="{{ cls.error }}"></instance-ref> |
| 96 </template> | 96 </template> |
| 97 | 97 |
| 98 <hr> | 98 <hr> |
| 99 | 99 |
| 100 <div class="content"> | 100 <div class="content"> |
| 101 <template if="{{ cls.fields.isNotEmpty }}"> | 101 <template if="{{ cls.fields.isNotEmpty }}"> |
| 102 fields ({{ cls['fields'].length }}) | 102 fields ({{ cls.fields.length }}) |
| 103 <curly-block expand="{{ cls.fields.length <= 8 }}"> | 103 <curly-block expand="{{ cls.fields.length <= 8 }}"> |
| 104 <div class="memberList"> | 104 <div class="memberList"> |
| 105 <template repeat="{{ field in cls.fields }}"> | 105 <template repeat="{{ field in cls.fields }}"> |
| 106 <div class="memberItem"> | 106 <div class="memberItem"> |
| 107 <div class="memberName"> | 107 <div class="memberName"> |
| 108 <field-ref ref="{{ field }}"></field-ref> | 108 <field-ref ref="{{ field }}"></field-ref> |
| 109 </div> | 109 </div> |
| 110 <div class="memberValue"> | 110 <div class="memberValue"> |
| 111 <template if="{{ field['value'] != null }}"> | 111 <template if="{{ field['value'] != null }}"> |
| 112 <instance-ref ref="{{ field['value'] }}"></instance-ref> | 112 <instance-ref ref="{{ field['value'] }}"></instance-ref> |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 | 185 |
| 186 <div class="content"> | 186 <div class="content"> |
| 187 <eval-box callback="{{ eval }}"></eval-box> | 187 <eval-box callback="{{ eval }}"></eval-box> |
| 188 </div> | 188 </div> |
| 189 <br><br><br><br> | 189 <br><br><br><br> |
| 190 <br><br><br><br> | 190 <br><br><br><br> |
| 191 </template> | 191 </template> |
| 192 </polymer-element> | 192 </polymer-element> |
| 193 | 193 |
| 194 <script type="application/dart" src="class_view.dart"></script> | 194 <script type="application/dart" src="class_view.dart"></script> |
| OLD | NEW |