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

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

Issue 1126363005: Show tooltip with local variable value in Observatory debugger (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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 | Annotate | Revision Log
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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/service.dart ('k') | runtime/observatory/lib/src/elements/script_inset.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698