class Byebug::NextCommand


current frame.
Allows the user the continue execution until the next instruction in the
Implements the next functionality.

def self.description

def self.description
  <<-DESCRIPTION
    n[ext][ nnn]
    #{short_description}
  DESCRIPTION
end

def self.regexp

def self.regexp
  /^\s* n(?:ext)? (?:\s+(\S+))? \s*$/x
end

def self.short_description

def self.short_description
  "Runs one or more lines of code"
end

def execute

def execute
  steps, err = parse_steps(@match[1], "Next")
  return errmsg(err) unless steps
  context.step_over(steps, context.frame.pos)
  processor.proceed!
end