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="function_ref.html"> | 3 <link rel="import" href="function_ref.html"> |
4 <link rel="import" href="isolate_ref.html"> | 4 <link rel="import" href="isolate_ref.html"> |
5 <link rel="import" href="observatory_element.html"> | 5 <link rel="import" href="observatory_element.html"> |
6 <link rel="import" href="script_inset.html"> | 6 <link rel="import" href="script_inset.html"> |
7 <link rel="import" href="script_ref.html"> | 7 <link rel="import" href="script_ref.html"> |
8 <polymer-element name="isolate-summary" extends="observatory-element"> | 8 <polymer-element name="isolate-summary" extends="observatory-element"> |
9 <template> | 9 <template> |
10 <link rel="stylesheet" href="css/shared.css"> | 10 <link rel="stylesheet" href="css/shared.css"> |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 57 |
58 <template if="{{ isolate.pauseEvent.kind == 'PauseInterrupted' || | 58 <template if="{{ isolate.pauseEvent.kind == 'PauseInterrupted' || |
59 isolate.pauseEvent.kind == 'PauseBreakpoint' || | 59 isolate.pauseEvent.kind == 'PauseBreakpoint' || |
60 isolate.pauseEvent.kind == 'PauseException' }}"> | 60 isolate.pauseEvent.kind == 'PauseException' }}"> |
61 <template if="{{ isolate.pauseEvent.breakpoint != null }}"> | 61 <template if="{{ isolate.pauseEvent.breakpoint != null }}"> |
62 by breakpoint | 62 by breakpoint |
63 </template> | 63 </template> |
64 <template if="{{ isolate.pauseEvent.kind == 'PauseException' }}"> | 64 <template if="{{ isolate.pauseEvent.kind == 'PauseException' }}"> |
65 by exception | 65 by exception |
66 </template> | 66 </template> |
67 at | 67 <template if="{{ isolate.topFrame != null }}"> |
68 <function-ref ref="{{ isolate.topFrame.function }}"> | 68 at |
69 </function-ref> | 69 <function-ref ref="{{ isolate.topFrame.function }}"> |
70 (<source-link location="{{ isolate.topFrame.location }}"> | 70 </function-ref> |
71 </source-link>) | 71 (<source-link location="{{ isolate.topFrame.location }}"> |
| 72 </source-link>) |
| 73 </template> |
72 </template> | 74 </template> |
73 </template> | 75 </template> |
74 | 76 |
75 <template if="{{ isolate.running }}"> | 77 <template if="{{ isolate.running }}"> |
76 at | 78 at |
77 <function-ref ref="{{ isolate.topFrame.function }}"> | 79 <function-ref ref="{{ isolate.topFrame.function }}"> |
78 </function-ref> | 80 </function-ref> |
79 (<source-link location="{{ isolate.topFrame.location }}"></source-link>) | 81 (<source-link location="{{ isolate.topFrame.location }}"></source-link>) |
80 </template> | 82 </template> |
81 | 83 |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 <div class="chart-wrapper" id="isolate-counter-chart"> | 215 <div class="chart-wrapper" id="isolate-counter-chart"> |
214 <div class="chart-host-wrapper"> | 216 <div class="chart-host-wrapper"> |
215 <div class="chart-host" id="isolate-counter-chart-host"></div> | 217 <div class="chart-host" id="isolate-counter-chart-host"></div> |
216 <div class="chart-legend-host" id="isolate-counter-chart-legend-host"></
div> | 218 <div class="chart-legend-host" id="isolate-counter-chart-legend-host"></
div> |
217 </div> | 219 </div> |
218 </div> | 220 </div> |
219 </template> | 221 </template> |
220 </polymer-element> | 222 </polymer-element> |
221 | 223 |
222 <script type="application/dart" src="isolate_summary.dart"></script> | 224 <script type="application/dart" src="isolate_summary.dart"></script> |
OLD | NEW |