# File lib/rd/rdvisitor.rb, line 81
    def str2kind(str)
      case str
      when '#'
        :instance_method
      when '.'
        :class_method
      when '::'
        :constant
      end
    end