| 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="action_link.html"> | 2 <link rel="import" href="action_link.html"> |
| 3 <link rel="import" href="cpu_profile.html"> | 3 <link rel="import" href="cpu_profile.html"> |
| 4 <link rel="import" href="curly_block.html"> | 4 <link rel="import" href="curly_block.html"> |
| 5 <link rel="import" href="eval_box.html"> | 5 <link rel="import" href="eval_box.html"> |
| 6 <link rel="import" href="eval_link.html"> | 6 <link rel="import" href="eval_link.html"> |
| 7 <link rel="import" href="field_ref.html"> | 7 <link rel="import" href="field_ref.html"> |
| 8 <link rel="import" href="function_ref.html"> | 8 <link rel="import" href="function_ref.html"> |
| 9 <link rel="import" href="instance_ref.html"> | 9 <link rel="import" href="instance_ref.html"> |
| 10 <link rel="import" href="library_ref.html"> | 10 <link rel="import" href="library_ref.html"> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 <div class="content"> | 31 <div class="content"> |
| 32 <h1> | 32 <h1> |
| 33 <template if="{{ cls.isAbstract }}"> | 33 <template if="{{ cls.isAbstract }}"> |
| 34 abstract | 34 abstract |
| 35 </template> | 35 </template> |
| 36 <template if="{{ cls.isPatch }}"> | 36 <template if="{{ cls.isPatch }}"> |
| 37 patch | 37 patch |
| 38 </template> | 38 </template> |
| 39 class {{ cls.name }} | 39 class {{ cls.name }} |
| 40 </h1> | 40 </h1> |
| 41 |
| 42 <object-common object="{{ cls }}"></object-common> |
| 43 <br> |
| 44 |
| 41 <div class="memberList"> | 45 <div class="memberList"> |
| 42 <div class="memberItem"> | 46 <div class="memberItem"> |
| 43 <div class="memberName">library</div> | 47 <div class="memberName">library</div> |
| 44 <div class="memberValue"> | 48 <div class="memberValue"> |
| 45 <library-ref ref="{{ cls.library }}"></library-ref> | 49 <library-ref ref="{{ cls.library }}"></library-ref> |
| 46 </div> | 50 </div> |
| 47 </div> | 51 </div> |
| 48 <div class="memberItem"> | 52 <div class="memberItem"> |
| 49 <div class="memberName">script</div> | 53 <div class="memberName">script</div> |
| 50 <div class="memberValue"> | 54 <div class="memberValue"> |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 <hr> | 248 <hr> |
| 245 <source-inset location="{{ cls.location }}"> | 249 <source-inset location="{{ cls.location }}"> |
| 246 </source-inset> | 250 </source-inset> |
| 247 </div> | 251 </div> |
| 248 | 252 |
| 249 <view-footer></view-footer> | 253 <view-footer></view-footer> |
| 250 </template> | 254 </template> |
| 251 </polymer-element> | 255 </polymer-element> |
| 252 | 256 |
| 253 <script type="application/dart" src="class_view.dart"></script> | 257 <script type="application/dart" src="class_view.dart"></script> |
| OLD | NEW |