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

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

Issue 1463123002: - Display a pseudo-receiver for static function activations. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 variables="{{ frame.variables }}"> 266 variables="{{ frame.variables }}">
267 </source-inset> 267 </source-inset>
268 </div> 268 </div>
269 <div class="flex-item-vars"> 269 <div class="flex-item-vars">
270 <div style="padding:10px;" class="memberList"> 270 <div style="padding-left:2em;" class="memberList">
271 <template repeat="{{ v in frame.variables }}"> 271 <template repeat="{{ v in properLocals }}">
272 <div class="memberItem"> 272 {{ v['name']}}&nbsp;:&nbsp;
273 <div class="memberName">{{ v['name']}}</div> 273 <any-service-ref ref="{{ v['value'] }}"
274 <div class="memberValue"> 274 expandKey="{{ makeExpandKey(v['name']) }}"
275 <any-service-ref ref="{{ v['value'] }}" 275 asValue="{{ true }}">
276 expandKey="{{ makeExpandKey(v['name']) }} "> 276 </any-service-ref><br>
277 </any-service-ref>
278 </div>
279 </div>
280 </template> 277 </template>
281 </div> 278 </div>
282 </div> 279 </div>
283 </div> 280 </div>
284 <!-- TODO(turnidge): Add eval box here? --> 281 <!-- TODO(turnidge): Add eval box here? -->
285 <div class="frameContractor"> 282 <div class="frameContractor">
286 <template if="{{expanded}}"> 283 <template if="{{expanded}}">
287 <a on-click="{{ toggleExpand }}"> 284 <a on-click="{{ toggleExpand }}">
288 <icon-expand-less></icon-expand-less> 285 <icon-expand-less></icon-expand-less>
289 </a> 286 </a>
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 <div class="container"> 465 <div class="container">
469 <template if="{{ modalPrompt != null }}"> 466 <template if="{{ modalPrompt != null }}">
470 <div class="modalPrompt">{{ modalPrompt }}</div> 467 <div class="modalPrompt">{{ modalPrompt }}</div>
471 </template> 468 </template>
472 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofoc us> 469 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofoc us>
473 </div> 470 </div>
474 </template> 471 </template>
475 </polymer-element> 472 </polymer-element>
476 473
477 <script type="application/dart" src="debugger.dart"></script> 474 <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/flag_list.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698