blob: 9670cad27cb4aaa0d778e886af20a699948d983f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require 'arel/visitors/visitor'
module Arel
module Visitors
class Reduce < Arel::Visitors::Visitor
def accept object, collector
visit object, collector
end
private
def visit object, collector
send dispatch[object.class], object, collector
rescue NoMethodError => e
raise e if respond_to?(dispatch[object.class], true)
superklass = object.class.ancestors.find { |klass|
respond_to?(dispatch[klass], true)
}
raise(TypeError, "Cannot visit #{object.class}") unless superklass
dispatch[object.class] = dispatch[superklass]
retry
end
end
end
end
|