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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/function_ref.html

Issue 199363002: Rework library and class view pages. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: edits Created 6 years, 9 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="class_ref.html">
2 <link rel="import" href="service_ref.html"> 3 <link rel="import" href="service_ref.html">
3 </head> 4 </head>
4 <polymer-element name="function-ref" extends="service-ref"> 5 <polymer-element name="function-ref" extends="service-ref">
5 <template> 6 <!-- TODO(turnidge): Is there a way to add newlines to this without
6 <a title="{{ hoverText }}" href="{{ url }}">{{ name }}</a> 7 messing up the output? -->
7 </template> 8 <template><template if="{{ qualified && ref['parent'] == null && ref['class'][ 'name'] != '::' }}"><class-ref ref="{{ ref['class'] }}"></class-ref>.</template> <template if="{{ qualified && ref['parent'] != null }}"><function-ref ref="{{ re f['parent'] }}" qualified="{{ true }}"></function-ref>.</template><a href="{{ ur l }}">{{ name }}</a></template>
Cutch 2014/03/13 18:16:40 Could you move this code into methods on FunctionR
9
8 <script type="application/dart" src="function_ref.dart"></script> 10 <script type="application/dart" src="function_ref.dart"></script>
9 </polymer-element> 11 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698