debian-mirror-gitlab/debian/gems-compat/arel-8.0.0/lib/arel/nodes/bind_param.rb

10 lines
163 B
Ruby

# frozen_string_literal: true
module Arel
module Nodes
class BindParam < Node
def ==(other)
other.is_a?(BindParam)
end
end
end
end