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

Side by Side Diff: dart/runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/field_ref.html

Issue 322303002: Version 1.5.0-dev.4.6 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 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 | Annotate | Revision Log
OLDNEW
1 <head> 1 <head>
2 <link rel="import" href="instance_ref.html"> 2 <link rel="import" href="instance_ref.html">
3 <link rel="import" href="observatory_element.html"> 3 <link rel="import" href="observatory_element.html">
4 <link rel="import" href="service_ref.html"> 4 <link rel="import" href="service_ref.html">
5 </head> 5 </head>
6 <polymer-element name="field-ref" extends="service-ref"> 6 <polymer-element name="field-ref" extends="service-ref">
7 <template> 7 <template>
8 <link rel="stylesheet" href="css/shared.css"> 8 <link rel="stylesheet" href="css/shared.css">
9 <div> 9 <div>
10 <template if="{{ ref['static'] }}">static</template> 10 <template if="{{ ref['static'] }}">static</template>
11 <template if="{{ ref['final'] }}">final</template> 11 <template if="{{ ref['final'] }}">final</template>
12 <template if="{{ ref['const'] }}">const</template> 12 <template if="{{ ref['const'] }}">const</template>
13 <template if="{{ (ref['declared_type']['name'] == 'dynamic' && 13 <template if="{{ (ref['declared_type']['name'] == 'dynamic' &&
14 !ref['final'] && !ref['const']) }}"> 14 !ref['final'] && !ref['const']) }}">
15 var 15 var
16 </template> 16 </template>
17 <template if="{{ (ref['declared_type']['name'] != 'dynamic') }}"> 17 <template if="{{ (ref['declared_type']['name'] != 'dynamic') }}">
18 <instance-ref ref="{{ ref['declared_type'] }}"></instance-ref> 18 <instance-ref ref="{{ ref['declared_type'] }}"></instance-ref>
19 </template> 19 </template>
20 <a title="{{ hoverText }}" href="{{ url }}">{{ name }}</a> 20 <a on-click="{{ goto }}" title="{{ hoverText }}" href="{{ url }}">{{ name }}</a>
21 </div> 21 </div>
22 </template> 22 </template>
23 <script type="application/dart" src="field_ref.dart"></script> 23 <script type="application/dart" src="field_ref.dart"></script>
24 </polymer-element> 24 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698