aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/visitors/bind_substitute.rb
blob: ce0fb5c924602e285d154a7f3145234587cc79fe (plain) (blame)
1
2
3
4
5
6
7
8
9
module Arel
  module Visitors
    class BindSubstitute
      def initialize delegate
        @delegate = delegate
      end
    end
  end
end