module Byebug

def self.attach(steps_out, before)


events occur. Before entering byebug the init script is read.
Enters byebug right before (or right after if _before_ is false) return
def self.attach(steps_out, before)
  start
  self.debugged_program = $PROGRAM_NAME
  run_init_script(StringIO.new)
  current_context.step_out(steps_out, before)
end