method

dispatch_cache

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: Visitor
dispatch_cache() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/arel/visitors/visitor.rb, line 17
        def self.dispatch_cache
          @dispatch_cache ||= Hash.new do |hash, klass|
            hash[klass] = :"visit_#{(klass.name || "").gsub("::", "_")}"
          end.compare_by_identity
        end
Register or log in to add new notes.