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_ref.html"> | 9 <link rel="import" href="script_ref.html"> |
9 </head> | 10 </head> |
10 <polymer-element name="isolate-view" extends="observatory-element"> | 11 <polymer-element name="isolate-view" extends="observatory-element"> |
11 <template> | 12 <template> |
12 <style> | 13 <style> |
13 .content { | 14 .content { |
14 padding-left: 10%; | 15 padding-left: 10%; |
15 font: 400 14px 'Montserrat', sans-serif; | 16 font: 400 14px 'Montserrat', sans-serif; |
16 } | 17 } |
17 h1 { | 18 h1 { |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 <div class="memberValue"> | 104 <div class="memberValue"> |
104 <instance-ref ref="{{ isolate.error.stacktrace }}"></instance-ref> | 105 <instance-ref ref="{{ isolate.error.stacktrace }}"></instance-ref> |
105 </div> | 106 </div> |
106 </template> | 107 </template> |
107 </div> | 108 </div> |
108 </div> | 109 </div> |
109 </div> | 110 </div> |
110 <hr> | 111 <hr> |
111 </template> | 112 </template> |
112 | 113 |
| 114 <br> |
| 115 |
113 <template if="{{ isolate.topFrame != null }}"> | 116 <template if="{{ isolate.topFrame != null }}"> |
114 <br> | 117 <script-inset script="{{ isolate.topFrame['script'] }}" |
115 <div class="sourceInset"> | 118 pos="{{ isolate.topFrame['tokenPos'] }}"> |
116 <pre> | 119 </script-inset> |
117 {{ isolate.topFrame['line'] }} {{ isolate.topFrame['lineString'
] }}</pre> | |
118 </div> | |
119 </template> | 120 </template> |
120 | 121 |
121 <br> | 122 <br> |
122 | 123 |
123 <div class="content"> | 124 <div class="content"> |
124 <div class="memberList"> | 125 <div class="memberList"> |
125 <div class="memberItem"> | 126 <div class="memberItem"> |
126 <div class="memberName">root library</div> | 127 <div class="memberName">root library</div> |
127 <div class="memberValue"> | 128 <div class="memberValue"> |
128 <function-ref ref="{{ isolate.rootLib }}"></function-ref> | 129 <function-ref ref="{{ isolate.rootLib }}"></function-ref> |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 <hr> | 208 <hr> |
208 | 209 |
209 <div class="content"> | 210 <div class="content"> |
210 <eval-box callback="{{ eval }}"></eval-box> | 211 <eval-box callback="{{ eval }}"></eval-box> |
211 </div> | 212 </div> |
212 <br><br><br><br> | 213 <br><br><br><br> |
213 <br><br><br><br> | 214 <br><br><br><br> |
214 </template> | 215 </template> |
215 <script type="application/dart" src="isolate_view.dart"></script> | 216 <script type="application/dart" src="isolate_view.dart"></script> |
216 </polymer-element> | 217 </polymer-element> |
OLD | NEW |