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

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

Issue 1191133002: UI for setting/clearing closure-specific breakpoints. (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
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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 </function-ref> 88 </function-ref>
89 </div> 89 </div>
90 </div> 90 </div>
91 <div class="memberItem"> 91 <div class="memberItem">
92 <div class="memberName">closure context</div> 92 <div class="memberName">closure context</div>
93 <div class="memberValue"> 93 <div class="memberValue">
94 <any-service-ref ref="{{ instance.context }}"> 94 <any-service-ref ref="{{ instance.context }}">
95 </any-service-ref> 95 </any-service-ref>
96 </div> 96 </div>
97 </div> 97 </div>
98 <div class="memberItem">
99 <div class="memberName">closure breakpoint</div>
100 <div class="memberValue">
101 <template if="{{ instance.activationBreakpoint == null }}">
102 <action-link callback="{{ setBreakOnActivation }}"
103 label="break on activation">
104 </action-link>
105 </template>
106 <template if="{{ instance.activationBreakpoint != null }}">
107 {{ instance.activationBreakpoint.toString() }}
108 <action-link callback="{{ clearBreakOnActivation }}"
109 label="remove">
110 </action-link>
111 </template>
112 </div>
113 </div>
98 </template> 114 </template>
99 115
100 <template if="{{ instance.isWeakProperty }}"> 116 <template if="{{ instance.isWeakProperty }}">
101 <div class="memberItem"> 117 <div class="memberItem">
102 <div class="memberName">key</div> 118 <div class="memberName">key</div>
103 <div class="memberValue"> 119 <div class="memberValue">
104 <any-service-ref ref="{{ instance.key }}"> 120 <any-service-ref ref="{{ instance.key }}">
105 </any-service-ref> 121 </any-service-ref>
106 </div> 122 </div>
107 </div> 123 </div>
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 </template> 230 </template>
215 231
216 </div> 232 </div>
217 233
218 </template> 234 </template>
219 <view-footer></view-footer> 235 <view-footer></view-footer>
220 </template> 236 </template>
221 </polymer-element> 237 </polymer-element>
222 238
223 <script type="application/dart" src="instance_view.dart"></script> 239 <script type="application/dart" src="instance_view.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/instance_view.dart ('k') | runtime/observatory/lib/src/elements/ports.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698