<%= method.abstract? ? "abstract " : "" %><%= method.visibility.try(&.+(" ")) %>
        <%= method.kind %>
<%= method.name %><%= method.real_name %><%= method.args_to_html %>
        
#
      
      <% if doc = method.formatted_doc %>
        
          <% if doc_copied_from = method.doc_copied_from %>
            
              Description copied from <%= doc_copied_from.kind %> <%= doc_copied_from.link_from(method.type) %>
            
          <% end %>
          <%= doc %>
        
      <% end %>
      
      
        <% if source_link = method.location.try(&.url) %>
          [
View source]
        <% end %>
      
 
  <% end %>
<% end %>