class Cucumber::Ast::Background

def step_collection(step_invocations)

def step_collection(step_invocations)
  init
  unless(@first_collection_created)
    @first_collection_created = true
    @step_invocations.dup(step_invocations)
  else
    @steps.step_invocations(true).dup(step_invocations)
  end
end