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

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

Issue 1300853006: Functions are objects too! (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: update tests Created 5 years, 4 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/context_view.html » ('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="action_link.html"> 2 <link rel="import" href="action_link.html">
3 <link rel="import" href="cpu_profile.html"> 3 <link rel="import" href="cpu_profile.html">
4 <link rel="import" href="curly_block.html"> 4 <link rel="import" href="curly_block.html">
5 <link rel="import" href="eval_box.html"> 5 <link rel="import" href="eval_box.html">
6 <link rel="import" href="eval_link.html"> 6 <link rel="import" href="eval_link.html">
7 <link rel="import" href="field_ref.html"> 7 <link rel="import" href="field_ref.html">
8 <link rel="import" href="function_ref.html"> 8 <link rel="import" href="function_ref.html">
9 <link rel="import" href="instance_ref.html"> 9 <link rel="import" href="instance_ref.html">
10 <link rel="import" href="library_ref.html"> 10 <link rel="import" href="library_ref.html">
(...skipping 20 matching lines...) Expand all
31 <div class="content"> 31 <div class="content">
32 <h1> 32 <h1>
33 <template if="{{ cls.isAbstract }}"> 33 <template if="{{ cls.isAbstract }}">
34 abstract 34 abstract
35 </template> 35 </template>
36 <template if="{{ cls.isPatch }}"> 36 <template if="{{ cls.isPatch }}">
37 patch 37 patch
38 </template> 38 </template>
39 class {{ cls.name }} 39 class {{ cls.name }}
40 </h1> 40 </h1>
41
42 <object-common object="{{ cls }}"></object-common>
43 <br>
44
41 <div class="memberList"> 45 <div class="memberList">
42 <div class="memberItem"> 46 <div class="memberItem">
43 <div class="memberName">library</div> 47 <div class="memberName">library</div>
44 <div class="memberValue"> 48 <div class="memberValue">
45 <library-ref ref="{{ cls.library }}"></library-ref> 49 <library-ref ref="{{ cls.library }}"></library-ref>
46 </div> 50 </div>
47 </div> 51 </div>
48 <div class="memberItem"> 52 <div class="memberItem">
49 <div class="memberName">script</div> 53 <div class="memberName">script</div>
50 <div class="memberValue"> 54 <div class="memberValue">
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 <hr> 248 <hr>
245 <source-inset location="{{ cls.location }}"> 249 <source-inset location="{{ cls.location }}">
246 </source-inset> 250 </source-inset>
247 </div> 251 </div>
248 252
249 <view-footer></view-footer> 253 <view-footer></view-footer>
250 </template> 254 </template>
251 </polymer-element> 255 </polymer-element>
252 256
253 <script type="application/dart" src="class_view.dart"></script> 257 <script type="application/dart" src="class_view.dart"></script>
OLDNEW
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/context_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698