class Psych::Visitors::Visitor

def self.dispatch_cache

Other tags:
    Api: - private
def self.dispatch_cache
  Hash.new do |hash, klass|
    hash[klass] = :"visit_#{klass.name.gsub('::', '_')}"
  end.compare_by_identity
end