# File lib/dm-core/property_set.rb, line 37
    def <<(property)
      found = named?(property.name)
      add_property(property)

      if found
        superclass_slice(index(property), property)
      else
        super
      end
    end