| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 [<a on-click="{{ resume }}">resume</a>] | 62 [<a on-click="{{ resume }}">resume</a>] |
| 63 </span> | 63 </span> |
| 64 </template> | 64 </template> |
| 65 | 65 |
| 66 <template if="{{ isolate.running }}"> | 66 <template if="{{ isolate.running }}"> |
| 67 <strong>running</strong> | 67 <strong>running</strong> |
| 68 @ | 68 @ |
| 69 <function-ref ref="{{ isolate.topFrame['function'] }}"> | 69 <function-ref ref="{{ isolate.topFrame['function'] }}"> |
| 70 </function-ref> | 70 </function-ref> |
| 71 (<script-ref ref="{{ isolate.topFrame['script'] }}" | 71 (<script-ref ref="{{ isolate.topFrame['script'] }}" |
| 72 line="{{ isolate.topFrame['line'] }}"></script-ref>) | 72 pos="{{ isolate.topFrame['tokenPos'] }}"> |
| 73 </script-ref>) |
| 73 </template> | 74 </template> |
| 74 | 75 |
| 75 <template if="{{ isolate.idle }}"> | 76 <template if="{{ isolate.idle }}"> |
| 76 <strong>idle</strong> | 77 <strong>idle</strong> |
| 77 </template> | 78 </template> |
| 78 </div> | 79 </div> |
| 79 </div> | 80 </div> |
| 80 </div> | 81 </div> |
| 81 </div> | 82 </div> |
| 82 | 83 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 <hr> | 209 <hr> |
| 209 | 210 |
| 210 <div class="content"> | 211 <div class="content"> |
| 211 <eval-box callback="{{ eval }}"></eval-box> | 212 <eval-box callback="{{ eval }}"></eval-box> |
| 212 </div> | 213 </div> |
| 213 <br><br><br><br> | 214 <br><br><br><br> |
| 214 <br><br><br><br> | 215 <br><br><br><br> |
| 215 </template> | 216 </template> |
| 216 <script type="application/dart" src="isolate_view.dart"></script> | 217 <script type="application/dart" src="isolate_view.dart"></script> |
| 217 </polymer-element> | 218 </polymer-element> |
| OLD | NEW |