# File lib/cgikit.rb, line 2313
        def run
                @attr_count = fetch( 'count' )        # Integer
                @attr_item  = fetch( 'item', false )
                @attr_list  = fetch( 'list' )         # Enumerable
                @attr_index = fetch( 'index', false )

                @repetitions << [ @name, @repetition_index ]

                check_required_attributes( ['list', 'item'], ['count'] )
                check_conflicted_attributes( 'list', 'count' )
        end