class Cucumber::Ast::ScenarioOutline

def step_invocations(cells)

def step_invocations(cells)
  step_invocations = @steps.step_invocations_from_cells(cells)
  if @background
    @background.step_collection(step_invocations)
  else
    StepCollection.new(step_invocations)
  end
end