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

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

Issue 1194103002: Observatory UI tweaks. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « runtime/observatory/lib/src/elements/debugger.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="class_ref.html"> 2 <link rel="import" href="class_ref.html">
3 <link rel="import" href="error_view.html"> 3 <link rel="import" href="error_view.html">
4 <link rel="import" href="eval_box.html"> 4 <link rel="import" href="eval_box.html">
5 <link rel="import" href="eval_link.html"> 5 <link rel="import" href="eval_link.html">
6 <link rel="import" href="field_ref.html"> 6 <link rel="import" href="field_ref.html">
7 <link rel="import" href="function_ref.html"> 7 <link rel="import" href="function_ref.html">
8 <link rel="import" href="inbound_reference.html"> 8 <link rel="import" href="inbound_reference.html">
9 <link rel="import" href="instance_ref.html"> 9 <link rel="import" href="instance_ref.html">
10 <link rel="import" href="observatory_element.html"> 10 <link rel="import" href="observatory_element.html">
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 <div class="memberList"> 221 <div class="memberList">
222 <template repeat="{{ index in instance.typedElements.asMap().keys }}"> 222 <template repeat="{{ index in instance.typedElements.asMap().keys }}">
223 <div class="memberItem"> 223 <div class="memberItem">
224 <div class="memberName">[{{ index }}]</div> 224 <div class="memberName">[{{ index }}]</div>
225 <div class="memberValue">{{ instance.typedElements[index].toSt ring() }}</div> 225 <div class="memberValue">{{ instance.typedElements[index].toSt ring() }}</div>
226 </div> 226 </div>
227 </template> 227 </template>
228 </div> 228 </div>
229 </curly-block><br><br> 229 </curly-block><br><br>
230 </template> 230 </template>
231 </div>
231 232
233 <div class="content-centered-big">
234 <template if="{{ instance.isClosure }}">
235 <source-inset location="{{ instance.function.location }}"></source-ins et>
236 </template>
232 </div> 237 </div>
233 238
234 </template> 239 </template>
235 <view-footer></view-footer> 240 <view-footer></view-footer>
236 </template> 241 </template>
237 </polymer-element> 242 </polymer-element>
238 243
239 <script type="application/dart" src="instance_view.dart"></script> 244 <script type="application/dart" src="instance_view.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/debugger.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698