# File lib_wpm/wpm.rb, line 1709
    def execute
      for i in 1..(@properties.times)
        @properties.index = i if @properties.has_index?
        for component in @child_components
          yield(component)
        end
      end
    end