class ParallelTests::Cucumber::Formatters::ScenarioLineLogger

def initialize(tag_expression = ::Cucumber::Core::Gherkin::TagExpression.new([]))

def initialize(tag_expression = ::Cucumber::Core::Gherkin::TagExpression.new([]))
  @scenarios = []
  @tag_expression = tag_expression
end

def method_missing(*args)

def method_missing(*args)
end

def visit_feature_element(uri, feature_element, feature_tags)

def visit_feature_element(uri, feature_element, feature_tags)
  scenario_tags = feature_element[:tags].map {|tag| ::Cucumber::Core::Ast::Tag.new(tag[:location], tag[:name])}
  scenario_tags = feature_tags + scenario_tags
  if feature_element[:examples].nil? # :Scenario
    # We don't accept the feature_element if the current tags are not valid
    return unless @tag_expression.evaluate(scenario_tags)
    @scenarios << [uri, feature_element[:location][:line]].join(":")
  else # :ScenarioOutline
    feature_element[:examples].each do |example|
      example_tags = example[:tags].map {|tag| ::Cucumber::Core::Ast::Tag.new(tag[:location], tag[:name])}
      example_tags = scenario_tags + example_tags
      next unless @tag_expression.evaluate(example_tags)
      rows = example[:tableBody].select { |body| body[:type] == :TableRow }
      rows.each { |row| @scenarios << [uri, row[:location][:line]].join(':') }
    end
  end
end