<%= fsignature(@item, true, false) %>
<% if @item.aliases.size > 0 %>
(also: <%= @item.aliases.map {|o| h(o.name(true)) }.join(", ") %>)
<% end %>
<% if @item.visibility != :public %><%= @item.visibility %><% end %>
<% if @item.has_tag?(:abstract) %>abstract<% end %>
<% if @item.has_tag?(:deprecated) %>deprecated<% end %>
<% if @item.has_tag?(:api) && @item.tag(:api).text == 'private' %>private<% end %>
<% if @item.has_tag?(:deprecated) %>
Deprecated. <%= htmlify_line @item.tag(:deprecated).text %>
<% else %>
<%= htmlify_line docstring_summary(@item) %>
<% end %>