module Cucumber::Parser::Feature::ExamplesSections0

def at_line?(line)

def at_line?(line)
  elements.detect { |e| e.at_line?(line) }
end

def build(filter, scenario_outline)

def build(filter, scenario_outline)
  elements.map do |e|
    if(filter.nil? || filter.accept_example?(e, scenario_outline))
      e.build(filter, scenario_outline)
    end
  end.compact
end

def matches_name?(regexp_to_match)

def matches_name?(regexp_to_match)
  elements.detect { |e| e.matches_name?(regexp_to_match) }
end