class T::Private::Methods::Signature

def method_desc

def method_desc
  loc = if @method.source_location
    @method.source_location.join(':')
  else
    "<unknown location>"
  end
  "#{@method} at #{loc}"
end