module Byebug::SteppingFunctions

def parse_stepping_args(command_name, match)

def parse_stepping_args(command_name, match)
  if match[1].nil?
    force = Command.settings[:forcestep]
  elsif match[1] == '+'
    force = true
  elsif match[1] == '-'
    force = false
  end
  steps = get_int(match[2], command_name, 1)
  return [steps, force]
end