class Byebug::DisableCommand

Disabling custom display expressions or breakpoints.

Reopens the disable command to define the breakpoints subcommand

Reopens the disable command to define the display subcommand

Public Class Methods

description() click to toggle source
# File lib/byebug/commands/disable.rb, line 20
    def self.description
      <<-DESCRIPTION
        dis[able][[ breakpoints| display)][ n1[ n2[ ...[ nn]]]]]

        #{short_description}
      DESCRIPTION
    end
regexp() click to toggle source
# File lib/byebug/commands/disable.rb, line 16
def self.regexp
  /^\s* dis(?:able)? (?:\s+ (.+))? \s*$/x
end
short_description() click to toggle source
# File lib/byebug/commands/disable.rb, line 28
def self.short_description
  "Disables breakpoints or displays"
end