# File lib/cucumber/formatter/console.rb, line 144
      def record_tag_occurrences(feature_element, options)
        @tag_occurences ||= Hash.new{|k,v| k[v] = []}
        options[:tag_names].each do |tag_name, limit|
          if !Ast::Tags.exclude_tag?(tag_name) && feature_element.tag_count(tag_name) > 0
            @tag_occurences[tag_name] << feature_element.file_colon_line
          end
        end
      end