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

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

Issue 2270013002: Converted Observatory context-view element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed access to instance function Created 4 years, 3 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="error_view.html"> 2 <link rel="import" href="error_view.html">
3 <link rel="import" href="eval_box.html"> 3 <link rel="import" href="eval_box.html">
4 <link rel="import" href="eval_link.html"> 4 <link rel="import" href="eval_link.html">
5 5
6 <polymer-element name="instance-view"> 6 <polymer-element name="instance-view">
7 <template> 7 <template>
8 <link rel="stylesheet" href="css/shared.css"> 8 <link rel="stylesheet" href="css/shared.css">
9 <nav-bar> 9 <nav-bar>
10 <top-nav-menu></top-nav-menu> 10 <top-nav-menu></top-nav-menu>
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 <instance-ref ref="{{ instance.bound }}"> 109 <instance-ref ref="{{ instance.bound }}">
110 </instance-ref> 110 </instance-ref>
111 </div> 111 </div>
112 </div> 112 </div>
113 </template> 113 </template>
114 114
115 <template if="{{ instance.isClosure }}"> 115 <template if="{{ instance.isClosure }}">
116 <div class="memberItem"> 116 <div class="memberItem">
117 <div class="memberName">closure function</div> 117 <div class="memberName">closure function</div>
118 <div class="memberValue"> 118 <div class="memberValue">
119 <function-ref ref="{{ instance.function }}"> 119 <function-ref ref="{{ instance.closureFunction }}">
120 </function-ref> 120 </function-ref>
121 </div> 121 </div>
122 </div> 122 </div>
123 <div class="memberItem"> 123 <div class="memberItem">
124 <div class="memberName">closure context</div> 124 <div class="memberName">closure context</div>
125 <div class="memberValue"> 125 <div class="memberValue">
126 <any-service-ref ref="{{ instance.context }}"> 126 <any-service-ref ref="{{ instance.context }}">
127 </any-service-ref> 127 </any-service-ref>
128 </div> 128 </div>
129 </div> 129 </div>
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 <div class="memberValue"> 351 <div class="memberValue">
352 <any-service-ref ref="{{ instance.value }}"></any-service-ref> 352 <any-service-ref ref="{{ instance.value }}"></any-service-ref>
353 </div> 353 </div>
354 </div> 354 </div>
355 </template> 355 </template>
356 356
357 </div> 357 </div>
358 358
359 <div class="content-centered-big"> 359 <div class="content-centered-big">
360 <template if="{{ instance.isClosure }}"> 360 <template if="{{ instance.isClosure }}">
361 <source-inset location="{{ instance.function.location }}"></source-ins et> 361 <source-inset location="{{ instance.closureFunction.location }}"></sou rce-inset>
362 </template> 362 </template>
363 <template if="{{ instance.typeClass != null }}"> 363 <template if="{{ instance.typeClass != null }}">
364 <source-inset location="{{ instance.typeClass.location }}"></source-in set> 364 <source-inset location="{{ instance.typeClass.location }}"></source-in set>
365 </template> 365 </template>
366 </div> 366 </div>
367 367
368 </template> 368 </template>
369 <view-footer></view-footer> 369 <view-footer></view-footer>
370 </template> 370 </template>
371 </polymer-element> 371 </polymer-element>
372 372
373 <script type="application/dart" src="instance_view.dart"></script> 373 <script type="application/dart" src="instance_view.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/context_view.html ('k') | runtime/observatory/lib/src/elements/service_view.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698