| 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 inDebuggerContext="{{ true }}" | 263 inDebuggerContext="{{ true }}" |
| 264 variables="{{ frame.variables }}"> | 264 variables="{{ frame.variables }}"> |
| 265 </source-inset> | 265 </source-inset> |
| 266 </div> | 266 </div> |
| 267 <div class="flex-item-vars"> | 267 <div class="flex-item-vars"> |
| 268 <div style="padding:10px;" class="memberList"> | 268 <div style="padding:10px;" class="memberList"> |
| 269 <template repeat="{{ v in frame.variables }}"> | 269 <template repeat="{{ v in frame.variables }}"> |
| 270 <div class="memberItem"> | 270 <div class="memberItem"> |
| 271 <div class="memberName">{{ v['name']}}</div> | 271 <div class="memberName">{{ v['name']}}</div> |
| 272 <div class="memberValue"> | 272 <div class="memberValue"> |
| 273 <any-service-ref ref="{{ v['value'] }}"> | 273 <any-service-ref ref="{{ v['value'] }}" |
| 274 expandKey="{{ makeExpandKey(v['name']) }}
"> |
| 274 </any-service-ref> | 275 </any-service-ref> |
| 275 </div> | 276 </div> |
| 276 </div> | 277 </div> |
| 277 </template> | 278 </template> |
| 278 </div> | 279 </div> |
| 279 </div> | 280 </div> |
| 280 </div> | 281 </div> |
| 281 <!-- TODO(turnidge): Add eval box here? --> | 282 <!-- TODO(turnidge): Add eval box here? --> |
| 282 <div class="frameContractor"> | 283 <div class="frameContractor"> |
| 283 <template if="{{expanded}}"> | 284 <template if="{{expanded}}"> |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 padding: 5px; | 446 padding: 5px; |
| 446 font: 400 16px consolas, courier, monospace; | 447 font: 400 16px consolas, courier, monospace; |
| 447 width: 95%; | 448 width: 95%; |
| 448 } | 449 } |
| 449 </style> | 450 </style> |
| 450 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus
> | 451 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus
> |
| 451 </template> | 452 </template> |
| 452 </polymer-element> | 453 </polymer-element> |
| 453 | 454 |
| 454 <script type="application/dart" src="debugger.dart"></script> | 455 <script type="application/dart" src="debugger.dart"></script> |
| OLD | NEW |