Sha256: 3ad3f3786564632833025929f2e51bb5c32a33d7f4de7043fe643563411aca3f
Contents?: true
Size: 506 Bytes
Versions: 10
Compression:
Stored size: 506 Bytes
Contents
# rubocop:disable Naming/MethodName # rubocop:disable Naming/UncommunicativeMethodParamName module Arel class DeleteManager < 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_DeleteManager(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