class Arel::Nodes::Binary
Attributes
left[RW]
right[RW]
Public Class Methods
new(left, right)
click to toggle source
# File lib/arel/nodes/binary.rb, line 6 def initialize left, right @left = left @right = right end
Public Instance Methods
initialize_copy(other)
click to toggle source
Calls superclass method
# File lib/arel/nodes/binary.rb, line 11 def initialize_copy other super @left = @left.clone if @left @right = @right.clone if @right end