# File lib/cucumber/formatter/console.rb, line 146
      def record_tag_occurrences(feature_element, options)
        @tag_occurrences ||= 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_occurrences[tag_name] << feature_element.file_colon_line
          end
        end
      end