# File lib/cgikit/component.rb, line 369
  def push_values_to_parent
    @associations.each do |key, as|
      if (key != Declaration::ELEMENT_KEY) and @api.nil? or \
        (@api and @api.has_binding?(key) and \
         (as.settable_in_component?(self) == false)) then
        @parent.take_value_for_key(key, value_for_key(key))
      end
    end
  end