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