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