module Byebug::ParseFunctions

def parse_steps(str, cmd)


is empty.
Returns the number of steps specified in as an integer or 1 if
def parse_steps(str, cmd)
  return 1 unless str
  steps, err = get_int(str, cmd, 1)
  return nil, err unless steps
  steps
end