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="observatory_element.html"> | 2 <link rel="import" href="observatory_element.html"> |
3 | 3 |
4 <polymer-element name="script-inset" extends="observatory-element"> | 4 <polymer-element name="script-inset" extends="observatory-element"> |
5 <template> | 5 <template> |
6 <style> | 6 <style> |
7 .sourceInset { | 7 .sourceInset { |
8 } | 8 } |
9 .sourceTable { | 9 .sourceTable { |
10 display: table; | 10 display: table; |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 | 83 |
84 <template if="{{ line == null }}"> | 84 <template if="{{ line == null }}"> |
85 <div class="emptyBreakpoint"> </div> | 85 <div class="emptyBreakpoint"> </div> |
86 </template> | 86 </template> |
87 | 87 |
88 <template if="{{ line != null }}"> | 88 <template if="{{ line != null }}"> |
89 <template if="{{ line.possibleBpt && busy}}"> | 89 <template if="{{ line.possibleBpt && busy}}"> |
90 <div class="busyBreakpoint">B</div> | 90 <div class="busyBreakpoint">B</div> |
91 </template> | 91 </template> |
92 | 92 |
93 <template if="{{ line.bpt == null && !line.possibleBpt }}"> | 93 <template if="{{ line.breakpoints == null && !line.possibleBpt }}"> |
94 <div class="emptyBreakpoint"> </div> | 94 <div class="emptyBreakpoint"> </div> |
95 </template> | 95 </template> |
96 | 96 |
97 <template if="{{ line.bpt == null && line.possibleBpt && !busy}}"> | 97 <template if="{{ line.breakpoints == null && line.possibleBpt && !busy}}"> |
98 <div class="possibleBreakpoint"> | 98 <div class="possibleBreakpoint"> |
99 <a on-click="{{ toggleBreakpoint }}">B</a> | 99 <a on-click="{{ toggleBreakpoint }}">B</a> |
100 </div> | 100 </div> |
101 </template> | 101 </template> |
102 | 102 |
103 <template if="{{ line.bpt != null && !line.bpt.resolved && !busy}}"> | 103 <template if="{{ line.breakpoints != null && !line.breakpointResolved && !
busy}}"> |
104 <div class="unresolvedBreakpoint"> | 104 <div class="unresolvedBreakpoint"> |
105 <a on-click="{{ toggleBreakpoint }}">B</a> | 105 <a on-click="{{ toggleBreakpoint }}">B</a> |
106 </div> | 106 </div> |
107 </template> | 107 </template> |
108 | 108 |
109 <template if="{{ line.bpt != null && line.bpt.resolved && !busy}}"> | 109 <template if="{{ line.breakpoints != null && line.breakpointResolved && !b
usy}}"> |
110 <div class="resolvedBreakpoint"> | 110 <div class="resolvedBreakpoint"> |
111 <a on-click="{{ toggleBreakpoint }}">B</a> | 111 <a on-click="{{ toggleBreakpoint }}">B</a> |
112 </div> | 112 </div> |
113 </template> | 113 </template> |
114 </template> <!-- line != null --> | 114 </template> <!-- line != null --> |
115 | 115 |
116 </template> | 116 </template> |
117 </polymer-element> | 117 </polymer-element> |
118 | 118 |
119 <script type="application/dart" src="script_inset.dart"></script> | 119 <script type="application/dart" src="script_inset.dart"></script> |
OLD | NEW |