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

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

Issue 1160873002: Sundry service protocol cleanups before version 1.0. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: pre commit 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 | « no previous file | runtime/observatory/lib/src/elements/debugger.dart » ('j') | 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="curly_block.html"> 2 <link rel="import" href="curly_block.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 <link rel="import" href="field_ref.html"> 5 <link rel="import" href="field_ref.html">
6 <link rel="import" href="function_ref.html"> 6 <link rel="import" href="function_ref.html">
7 <link rel="import" href="instance_ref.html"> 7 <link rel="import" href="instance_ref.html">
8 <link rel="import" href="library_ref.html"> 8 <link rel="import" href="library_ref.html">
9 <link rel="import" href="nav_bar.html"> 9 <link rel="import" href="nav_bar.html">
10 <link rel="import" href="observatory_element.html"> 10 <link rel="import" href="observatory_element.html">
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 <template if="{{ cls.fields.isNotEmpty }}"> 102 <template if="{{ cls.fields.isNotEmpty }}">
103 fields ({{ cls.fields.length }}) 103 fields ({{ cls.fields.length }})
104 <curly-block expand="{{ cls.fields.length <= 8 }}"> 104 <curly-block expand="{{ cls.fields.length <= 8 }}">
105 <div class="memberList"> 105 <div class="memberList">
106 <template repeat="{{ field in cls.fields }}"> 106 <template repeat="{{ field in cls.fields }}">
107 <div class="memberItem"> 107 <div class="memberItem">
108 <div class="memberName"> 108 <div class="memberName">
109 <field-ref ref="{{ field }}"></field-ref> 109 <field-ref ref="{{ field }}"></field-ref>
110 </div> 110 </div>
111 <div class="memberValue"> 111 <div class="memberValue">
112 <template if="{{ field.value != null }}"> 112 <template if="{{ field.staticValue != null }}">
113 <any-service-ref ref="{{ field.value }}"></any-service-ref> 113 <any-service-ref ref="{{ field.staticValue }}"></any-service -ref>
114 </template> 114 </template>
115 </div> 115 </div>
116 </div> 116 </div>
117 </template> 117 </template>
118 </div> 118 </div>
119 </curly-block><br><br> 119 </curly-block><br><br>
120 </template> 120 </template>
121 121
122 <template if="{{ cls.functions.isNotEmpty }}"> 122 <template if="{{ cls.functions.isNotEmpty }}">
123 functions ({{ cls.functions.length }}) 123 functions ({{ cls.functions.length }})
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 startPos="{{ cls.tokenPos }}" 207 startPos="{{ cls.tokenPos }}"
208 endPos="{{ cls.endTokenPos }}"> 208 endPos="{{ cls.endTokenPos }}">
209 </script-inset> 209 </script-inset>
210 </div> 210 </div>
211 211
212 <view-footer></view-footer> 212 <view-footer></view-footer>
213 </template> 213 </template>
214 </polymer-element> 214 </polymer-element>
215 215
216 <script type="application/dart" src="class_view.dart"></script> 216 <script type="application/dart" src="class_view.dart"></script>
OLDNEW
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/debugger.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698