| 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="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 28 matching lines...) Expand all Loading... |
| 39 <div class="memberName">vm name</div> | 39 <div class="memberName">vm name</div> |
| 40 <div class="memberValue">{{ library.vmName }}</div> | 40 <div class="memberValue">{{ library.vmName }}</div> |
| 41 </div> | 41 </div> |
| 42 </template> | 42 </template> |
| 43 </div> | 43 </div> |
| 44 </div> | 44 </div> |
| 45 | 45 |
| 46 <hr> | 46 <hr> |
| 47 | 47 |
| 48 <div class="content"> | 48 <div class="content"> |
| 49 <template if="{{ library.imports.isNotEmpty }}"> | 49 <template if="{{ library.dependencies.isNotEmpty }}"> |
| 50 imports ({{ library.imports.length }}) | 50 dependencies ({{ library.dependencies.length }}) |
| 51 <curly-block expand="{{ library.imports.length <= 8 }}"> | 51 <curly-block expand="{{ library.dependencies.length <= 8 }}"> |
| 52 <div class="memberList"> | 52 <div class="memberList"> |
| 53 <template repeat="{{ imp in library.imports }}"> | 53 <template repeat="{{ dep in library.dependencies }}"> |
| 54 <div class="memberItem"> | 54 <div class="memberItem"> |
| 55 <div class="memberValue"> | 55 <div class="memberValue"> |
| 56 <library-ref ref="{{ imp }}"></library-ref> | 56 <library-ref ref="{{ dep.target }}"></library-ref> |
| 57 </div> | 57 </div> |
| 58 </div> | 58 </div> |
| 59 </template> | 59 </template> |
| 60 </div> | 60 </div> |
| 61 </curly-block><br> | 61 </curly-block><br> |
| 62 <br> | 62 <br> |
| 63 </template> | 63 </template> |
| 64 | 64 |
| 65 <template if="{{ library.scripts.isNotEmpty }}"> | 65 <template if="{{ library.scripts.isNotEmpty }}"> |
| 66 scripts ({{ library.scripts.length }}) | 66 scripts ({{ library.scripts.length }}) |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 <hr> | 135 <hr> |
| 136 | 136 |
| 137 <div class="content"> | 137 <div class="content"> |
| 138 <eval-box callback="{{ evaluate }}"></eval-box> | 138 <eval-box callback="{{ evaluate }}"></eval-box> |
| 139 </div> | 139 </div> |
| 140 <view-footer></view-footer> | 140 <view-footer></view-footer> |
| 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> |
| OLD | NEW |