| 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="function_ref.html"> | 2 <link rel="import" href="function_ref.html"> |
| 3 <link rel="import" href="nav_bar.html"> | 3 <link rel="import" href="nav_bar.html"> |
| 4 <link rel="import" href="eval_link.html"> | 4 <link rel="import" href="eval_link.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 | 8 |
| 9 <!-- TODO(turnidge): Use core-icon once core_elements work properly in | 9 <!-- TODO(turnidge): Use core-icon once core_elements work properly in |
| 10 devtools --> | 10 devtools --> |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 </a> | 256 </a> |
| 257 | 257 |
| 258 <template if="{{expanded}}"> | 258 <template if="{{expanded}}"> |
| 259 <div class="frameDetails"> | 259 <div class="frameDetails"> |
| 260 <div class="flex-row-wrap"> | 260 <div class="flex-row-wrap"> |
| 261 <div class="flex-item-script"> | 261 <div class="flex-item-script"> |
| 262 <source-inset height="{{ scriptHeight }}" | 262 <source-inset height="{{ scriptHeight }}" |
| 263 location="{{ frame.function.location }}" | 263 location="{{ frame.function.location }}" |
| 264 currentPos="{{ frame.location.tokenPos }}" | 264 currentPos="{{ frame.location.tokenPos }}" |
| 265 inDebuggerContext="{{ true }}" | 265 inDebuggerContext="{{ true }}" |
| 266 scroller="{{ scroller }}" |
| 266 variables="{{ frame.variables }}"> | 267 variables="{{ frame.variables }}"> |
| 267 </source-inset> | 268 </source-inset> |
| 268 </div> | 269 </div> |
| 269 <div class="flex-item-vars"> | 270 <div class="flex-item-vars"> |
| 270 <div style="padding-left:2em;" class="memberList"> | 271 <div style="padding-left:2em;" class="memberList"> |
| 271 <template repeat="{{ v in properLocals }}"> | 272 <template repeat="{{ v in properLocals }}"> |
| 272 {{ v['name']}} : | 273 {{ v['name']}} : |
| 273 <any-service-ref ref="{{ v['value'] }}" | 274 <any-service-ref ref="{{ v['value'] }}" |
| 274 expandKey="{{ makeExpandKey(v['name']) }}" | 275 expandKey="{{ makeExpandKey(v['name']) }}" |
| 275 asValue="{{ true }}"> | 276 asValue="{{ true }}"> |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 <div class="container"> | 466 <div class="container"> |
| 466 <template if="{{ modalPrompt != null }}"> | 467 <template if="{{ modalPrompt != null }}"> |
| 467 <div class="modalPrompt">{{ modalPrompt }}</div> | 468 <div class="modalPrompt">{{ modalPrompt }}</div> |
| 468 </template> | 469 </template> |
| 469 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofoc
us> | 470 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofoc
us> |
| 470 </div> | 471 </div> |
| 471 </template> | 472 </template> |
| 472 </polymer-element> | 473 </polymer-element> |
| 473 | 474 |
| 474 <script type="application/dart" src="debugger.dart"></script> | 475 <script type="application/dart" src="debugger.dart"></script> |
| OLD | NEW |