module Byebug::SteppingFunctions

def parse_force(str)

def parse_force(str)
  return Setting[:forcestep] unless str
  case str
  when '+' then
    true
  when '-' then
    false
  end
end