| OLD | NEW |
| 1 <head> | 1 <head> |
| 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="function_ref.html"> | 4 <link rel="import" href="function_ref.html"> |
| 5 <link rel="import" href="library_ref.html"> | 5 <link rel="import" href="library_ref.html"> |
| 6 <link rel="import" href="nav_bar.html"> | 6 <link rel="import" href="nav_bar.html"> |
| 7 <link rel="import" href="observatory_element.html"> | 7 <link rel="import" href="observatory_element.html"> |
| 8 <link rel="import" href="script_inset.html"> | 8 <link rel="import" href="script_inset.html"> |
| 9 <link rel="import" href="script_ref.html"> | 9 <link rel="import" href="script_ref.html"> |
| 10 </head> | 10 </head> |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 </div> | 184 </div> |
| 185 </div> | 185 </div> |
| 186 | 186 |
| 187 </div> <!-- flex row --> | 187 </div> <!-- flex row --> |
| 188 </div> <!-- content --> | 188 </div> <!-- content --> |
| 189 | 189 |
| 190 <hr> | 190 <hr> |
| 191 | 191 |
| 192 <div class="content"> | 192 <div class="content"> |
| 193 libraries ({{ isolate.libraries.length }}) | 193 libraries ({{ isolate.libraries.length }}) |
| 194 <curly-block> | 194 <curly-block expand="{{ isolate.libraries.length <= 8 }}"> |
| 195 <div class="memberList"> | 195 <div class="memberList"> |
| 196 <template repeat="{{ lib in isolate.libraries }}"> | 196 <template repeat="{{ lib in isolate.libraries }}"> |
| 197 <div class="memberItem"> | 197 <div class="memberItem"> |
| 198 <div class="memberName"> | 198 <div class="memberName"> |
| 199 <library-ref ref="{{ lib }}"></library-ref> | 199 <library-ref ref="{{ lib }}"></library-ref> |
| 200 </div> | 200 </div> |
| 201 </div> | 201 </div> |
| 202 </template> | 202 </template> |
| 203 </div> | 203 </div> |
| 204 </curly-block> | 204 </curly-block> |
| (...skipping 15 matching lines...) Expand all Loading... |
| 220 <hr> | 220 <hr> |
| 221 | 221 |
| 222 <div class="content"> | 222 <div class="content"> |
| 223 <eval-box callback="{{ eval }}"></eval-box> | 223 <eval-box callback="{{ eval }}"></eval-box> |
| 224 </div> | 224 </div> |
| 225 <br><br><br><br> | 225 <br><br><br><br> |
| 226 <br><br><br><br> | 226 <br><br><br><br> |
| 227 </template> | 227 </template> |
| 228 <script type="application/dart" src="isolate_view.dart"></script> | 228 <script type="application/dart" src="isolate_view.dart"></script> |
| 229 </polymer-element> | 229 </polymer-element> |
| OLD | NEW |