# File lib/rd/rdvisitor.rb, line 93
    def kind2str(int)
      case int
      when :instance_method, :function
        '#'
      when :class_method
        '.'
      when :constant
        '::'
      end
    end