Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(741)

Side by Side Diff: runtime/observatory/lib/src/elements/debugger.html

Issue 1269083006: Remember when a variable has been expanded/unexpanded in the debugger. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/debugger.dart ('k') | runtime/observatory/lib/src/elements/instance_ref.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698