| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 <template if="{{ cls.fields.isNotEmpty }}"> | 102 <template if="{{ cls.fields.isNotEmpty }}"> |
| 103 fields ({{ cls.fields.length }}) | 103 fields ({{ cls.fields.length }}) |
| 104 <curly-block expand="{{ cls.fields.length <= 8 }}"> | 104 <curly-block expand="{{ cls.fields.length <= 8 }}"> |
| 105 <div class="memberList"> | 105 <div class="memberList"> |
| 106 <template repeat="{{ field in cls.fields }}"> | 106 <template repeat="{{ field in cls.fields }}"> |
| 107 <div class="memberItem"> | 107 <div class="memberItem"> |
| 108 <div class="memberName"> | 108 <div class="memberName"> |
| 109 <field-ref ref="{{ field }}"></field-ref> | 109 <field-ref ref="{{ field }}"></field-ref> |
| 110 </div> | 110 </div> |
| 111 <div class="memberValue"> | 111 <div class="memberValue"> |
| 112 <template if="{{ field.value != null }}"> | 112 <template if="{{ field.staticValue != null }}"> |
| 113 <any-service-ref ref="{{ field.value }}"></any-service-ref> | 113 <any-service-ref ref="{{ field.staticValue }}"></any-service
-ref> |
| 114 </template> | 114 </template> |
| 115 </div> | 115 </div> |
| 116 </div> | 116 </div> |
| 117 </template> | 117 </template> |
| 118 </div> | 118 </div> |
| 119 </curly-block><br><br> | 119 </curly-block><br><br> |
| 120 </template> | 120 </template> |
| 121 | 121 |
| 122 <template if="{{ cls.functions.isNotEmpty }}"> | 122 <template if="{{ cls.functions.isNotEmpty }}"> |
| 123 functions ({{ cls.functions.length }}) | 123 functions ({{ cls.functions.length }}) |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 startPos="{{ cls.tokenPos }}" | 207 startPos="{{ cls.tokenPos }}" |
| 208 endPos="{{ cls.endTokenPos }}"> | 208 endPos="{{ cls.endTokenPos }}"> |
| 209 </script-inset> | 209 </script-inset> |
| 210 </div> | 210 </div> |
| 211 | 211 |
| 212 <view-footer></view-footer> | 212 <view-footer></view-footer> |
| 213 </template> | 213 </template> |
| 214 </polymer-element> | 214 </polymer-element> |
| 215 | 215 |
| 216 <script type="application/dart" src="class_view.dart"></script> | 216 <script type="application/dart" src="class_view.dart"></script> |
| OLD | NEW |