# File lib/hashie/extensions/dash/property_translation.rb, line 150
          def []=(property, value)
            if self.class.translation_exists? property
              send("#{property}=", value)
              super(property, value) if self.class.properties.include?(property)
            elsif self.class.transformation_exists? property
              super property, self.class.transformed_property(property, value)
            elsif property_exists? property
              super
            end
          end