class Byebug::EnableCommand
Enabling custom display expressions or breakpoints.
Reopens the enable
command to define the
breakpoints
subcommand
Reopens the enable
command to define the display
subcommand
Public Class Methods
description()
click to toggle source
# File lib/byebug/commands/enable.rb, line 19 def self.description <<-EOD en[able][[ b[reakpoints]| d[isplay])][ n1[ n2[ ...[ nn]]]]] #{short_description} EOD end
regexp()
click to toggle source
# File lib/byebug/commands/enable.rb, line 15 def self.regexp /^\s* en(?:able)? (?:\s+ (.+))? \s*$/x end
short_description()
click to toggle source
# File lib/byebug/commands/enable.rb, line 27 def self.short_description 'Enables breakpoints or displays' end