Sha256: b8f9b055cd5618a2bf584352cc94daba8108e051e35e95f2ddac429dbd2a80a5
Contents?: true
Size: 506 Bytes
Versions: 10
Compression:
Stored size: 506 Bytes
Contents
# rubocop:disable Naming/MethodName # rubocop:disable Naming/UncommunicativeMethodParamName module Arel class UpdateManager < Arel::TreeManager def ==(other) other.is_a?(self.class) && @ast == other.ast && @ctx == other.ctx end protected attr_reader :ctx end module Visitors class Dot def visit_Arel_UpdateManager(o) visit_edge o, 'ast' end end end end # rubocop:enable Naming/MethodName # rubocop:enable Naming/UncommunicativeMethodParamName
Version data entries
10 entries across 10 versions & 1 rubygems