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

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

Issue 1584173003: Use getSourceReport for coverage/callsites in Observatory. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: cleanups Created 4 years, 11 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 </a> 256 </a>
257 257
258 <template if="{{expanded}}"> 258 <template if="{{expanded}}">
259 <div class="frameDetails"> 259 <div class="frameDetails">
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 scroller="{{ scroller }}"
266 variables="{{ frame.variables }}"> 267 variables="{{ frame.variables }}">
267 </source-inset> 268 </source-inset>
268 </div> 269 </div>
269 <div class="flex-item-vars"> 270 <div class="flex-item-vars">
270 <div style="padding-left:2em;" class="memberList"> 271 <div style="padding-left:2em;" class="memberList">
271 <template repeat="{{ v in properLocals }}"> 272 <template repeat="{{ v in properLocals }}">
272 {{ v['name']}}&nbsp;:&nbsp; 273 {{ v['name']}}&nbsp;:&nbsp;
273 <any-service-ref ref="{{ v['value'] }}" 274 <any-service-ref ref="{{ v['value'] }}"
274 expandKey="{{ makeExpandKey(v['name']) }}" 275 expandKey="{{ makeExpandKey(v['name']) }}"
275 asValue="{{ true }}"> 276 asValue="{{ true }}">
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 <div class="container"> 466 <div class="container">
466 <template if="{{ modalPrompt != null }}"> 467 <template if="{{ modalPrompt != null }}">
467 <div class="modalPrompt">{{ modalPrompt }}</div> 468 <div class="modalPrompt">{{ modalPrompt }}</div>
468 </template> 469 </template>
469 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofoc us> 470 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofoc us>
470 </div> 471 </div>
471 </template> 472 </template>
472 </polymer-element> 473 </polymer-element>
473 474
474 <script type="application/dart" src="debugger.dart"></script> 475 <script type="application/dart" src="debugger.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698