| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 </div> | 243 </div> |
| 244 </template> | 244 </template> |
| 245 </div> | 245 </div> |
| 246 </a> | 246 </a> |
| 247 | 247 |
| 248 <template if="{{expanded}}"> | 248 <template if="{{expanded}}"> |
| 249 <div class="frameDetails"> | 249 <div class="frameDetails"> |
| 250 <div class="flex-row"> | 250 <div class="flex-row"> |
| 251 <div class="flex-item-60-percent"> | 251 <div class="flex-item-60-percent"> |
| 252 <script-inset height="{{ scriptHeight }}" | 252 <script-inset height="{{ scriptHeight }}" |
| 253 » » » script="{{ frame['function'].script }}" | 253 script="{{ frame['function'].script }}" |
| 254 startPos="{{ frame['function'].tokenPos }}" | 254 startPos="{{ frame['function'].tokenPos }}" |
| 255 endPos="{{ frame['function'].endTokenPos }}" | 255 endPos="{{ frame['function'].endTokenPos }}" |
| 256 currentPos="{{ frame['tokenPos'] }}" | 256 currentPos="{{ frame['tokenPos'] }}" |
| 257 inDebuggerContext="{{ true }}"> | 257 inDebuggerContext="{{ true }}" |
| 258 variables="{{ frame['vars'] }}"> |
| 258 </script-inset> | 259 </script-inset> |
| 259 </div> | 260 </div> |
| 260 <div class="flex-item-40-percent"> | 261 <div class="flex-item-40-percent"> |
| 261 <div style="padding:10px;" class="memberList"> | 262 <div style="padding:10px;" class="memberList"> |
| 262 <template repeat="{{ v in frame['vars'] }}"> | 263 <template repeat="{{ v in frame['vars'] }}"> |
| 263 <div class="memberItem"> | 264 <div class="memberItem"> |
| 264 <div class="memberName">{{ v['name']}}</div> | 265 <div class="memberName">{{ v['name']}}</div> |
| 265 <div class="memberValue"> | 266 <div class="memberValue"> |
| 266 <any-service-ref ref="{{ v['value'] }}"> | 267 <any-service-ref ref="{{ v['value'] }}"> |
| 267 </any-service-ref> | 268 </any-service-ref> |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 margin: 20px; | 420 margin: 20px; |
| 420 font: 400 16px consolas, courier, monospace; | 421 font: 400 16px consolas, courier, monospace; |
| 421 width: 95%; | 422 width: 95%; |
| 422 } | 423 } |
| 423 </style> | 424 </style> |
| 424 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus
> | 425 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus
> |
| 425 </template> | 426 </template> |
| 426 </polymer-element> | 427 </polymer-element> |
| 427 | 428 |
| 428 <script type="application/dart" src="debugger.dart"></script> | 429 <script type="application/dart" src="debugger.dart"></script> |
| OLD | NEW |