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="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="function_ref.html"> | 5 <link rel="import" href="function_ref.html"> |
6 <link rel="import" href="isolate_summary.html"> | 6 <link rel="import" href="isolate_summary.html"> |
7 <link rel="import" href="library_ref.html"> | 7 <link rel="import" href="library_ref.html"> |
8 <link rel="import" href="nav_bar.html"> | 8 <link rel="import" href="nav_bar.html"> |
9 <link rel="import" href="observatory_element.html"> | 9 <link rel="import" href="observatory_element.html"> |
10 <link rel="import" href="script_inset.html"> | 10 <link rel="import" href="script_inset.html"> |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 <function-ref ref="{{ isolate.entry }}"></function-ref> | 92 <function-ref ref="{{ isolate.entry }}"></function-ref> |
93 </div> | 93 </div> |
94 </template> | 94 </template> |
95 </div> | 95 </div> |
96 <div class="memberItem"> | 96 <div class="memberItem"> |
97 <div class="memberName">isolate id</div> | 97 <div class="memberName">isolate id</div> |
98 <div class="memberValue">{{ isolate.mainPort }}</div> | 98 <div class="memberValue">{{ isolate.mainPort }}</div> |
99 </div> | 99 </div> |
100 </div> | 100 </div> |
101 </div> | 101 </div> |
102 <div class="flex-item-50-percent"> | |
103 <div class="memberItem"> | |
104 <div class="memberValue"> | |
105 See <a on-click="{{ goto }}" _href="{{ gotoLink(isolate.relativeLi
nk('debug/breakpoints')) }}">breakpoints</a> | |
106 </div> | |
107 </div> | |
108 </div> | |
109 </div> | 102 </div> |
110 </div> | 103 </div> |
111 | 104 |
112 <hr> | 105 <hr> |
113 | 106 |
114 <div class="content"> | 107 <div class="content"> |
115 libraries ({{ isolate.libraries.length }}) | 108 libraries ({{ isolate.libraries.length }}) |
116 <curly-block expand="{{ isolate.libraries.length <= 8 }}"> | 109 <curly-block expand="{{ isolate.libraries.length <= 8 }}"> |
117 <div class="memberList"> | 110 <div class="memberList"> |
118 <template repeat="{{ lib in isolate.libraries }}"> | 111 <template repeat="{{ lib in isolate.libraries }}"> |
(...skipping 17 matching lines...) Expand all Loading... |
136 | 129 |
137 <div class="content"> | 130 <div class="content"> |
138 <eval-box callback="{{ eval }}"></eval-box> | 131 <eval-box callback="{{ eval }}"></eval-box> |
139 </div> | 132 </div> |
140 <br><br><br><br> | 133 <br><br><br><br> |
141 <br><br><br><br> | 134 <br><br><br><br> |
142 </template> | 135 </template> |
143 </polymer-element> | 136 </polymer-element> |
144 | 137 |
145 <script type="application/dart" src="isolate_view.dart"></script> | 138 <script type="application/dart" src="isolate_view.dart"></script> |
OLD | NEW |