class Cucumber::Ast::StepCollection

def step_invocations(background = false)

def step_invocations(background = false)
  StepCollection.new(@steps.map{ |step| 
    i = step.step_invocation
    i.background = background
    i
  })
end