Method: Arel::Nodes::Binary#initialize_copy
- Defined in:
- lib/arel/nodes/binary.rb
#initialize_copy(other) ⇒ Object
14 15 16 17 18 |
# File 'lib/arel/nodes/binary.rb', line 14 def initialize_copy(other) super @left = @left.clone if @left @right = @right.clone if @right end |