aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/visitors/bind_visitor.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/visitors/bind_visitor.rb')
-rw-r--r--lib/arel/visitors/bind_visitor.rb40
1 files changed, 0 insertions, 40 deletions
diff --git a/lib/arel/visitors/bind_visitor.rb b/lib/arel/visitors/bind_visitor.rb
deleted file mode 100644
index 8a5570cf5c..0000000000
--- a/lib/arel/visitors/bind_visitor.rb
+++ /dev/null
@@ -1,40 +0,0 @@
-# frozen_string_literal: true
-module Arel
- module Visitors
- module BindVisitor
- def initialize target
- @block = nil
- super
- end
-
- def accept node, collector, &block
- @block = block if block_given?
- super
- end
-
- private
-
- def visit_Arel_Nodes_Assignment o, collector
- if o.right.is_a? Arel::Nodes::BindParam
- collector = visit o.left, collector
- collector << " = "
- visit o.right, collector
- else
- super
- end
- end
-
- def visit_Arel_Nodes_BindParam o, collector
- if @block
- val = @block.call
- if String === val
- collector << val
- end
- else
- super
- end
- end
-
- end
- end
-end