Class: Byebug::NextCommand

Inherits:
Command
  • Object
show all
Includes:
Helpers::ParseHelper
Defined in:
lib/byebug/commands/next.rb

Overview

Implements the next functionality.

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

Instance Attribute Summary

Attributes inherited from Command

#processor

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Helpers::ParseHelper

#get_int, #parse_steps, #syntax_valid?

Methods inherited from Command

#arguments, columnize, #context, #frame, help, #initialize, match, to_s

Methods included from Helpers::StringHelper

#camelize, #deindent, #prettify

Constructor Details

This class inherits a constructor from Byebug::Command

Class Method Details

.descriptionObject



20
21
22
23
24
25
26
# File 'lib/byebug/commands/next.rb', line 20

def self.description
  <<-DESCRIPTION
    n[ext][ nnn]

    #{short_description}
  DESCRIPTION
end

.regexpObject



16
17
18
# File 'lib/byebug/commands/next.rb', line 16

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

.short_descriptionObject



28
29
30
# File 'lib/byebug/commands/next.rb', line 28

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

Instance Method Details

#executeObject



32
33
34
35
36
37
38
# File 'lib/byebug/commands/next.rb', line 32

def execute
  steps, err = parse_steps(@match[1], "Next")
  return errmsg(err) unless steps

  context.step_over(steps, context.frame.pos)
  processor.proceed!
end