Class: Debugger::EnableCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/ruby-debug/commands/enable.rb

Overview

:nodoc:

Constant Summary collapse

Subcommands =
[
   ['breakpoints', 2, "Enable specified breakpoints",
"Give breakpoint numbers (separated by spaces) as arguments.
This is used to cancel the effect of the \"disable\" command."
   ],
   ['display', 2, 
    "Enable some expressions to be displayed when program stops",
"Arguments are the code numbers of the expressions to resume displaying.
Do \"info display\" to see current list of code numbers."],
  ].map do |name, min, short_help, long_help| 
  SubcmdStruct.new(name, min, short_help, long_help)
end

Constants inherited from Command

Command::DEF_OPTIONS

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Command

commands, #find, inherited, #initialize, load_commands, #match, method_missing, options, register_setting_get, register_setting_set, register_setting_var, settings, settings_map

Constructor Details

This class inherits a constructor from Debugger::Command

Class Method Details

.help(args) ⇒ Object



94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/ruby-debug/commands/enable.rb', line 94

def help(args)
  if args[1] 
    s = args[1]
    subcmd = Subcommands.find do |try_subcmd| 
      (s.size >= try_subcmd.min) and
        (try_subcmd.name[0..s.size-1] == s)
    end
    if subcmd
      str = subcmd.short_help + '.'
      str += "\n" + subcmd.long_help if subcmd.long_help
      return str
    else
      return "Invalid 'enable' subcommand '#{args[1]}'."
    end
  end
  s = %{
    Enable some things.
    This is used to cancel the effect of the "disable" command.
    -- 
    List of enable subcommands:
    --  
  }
  for subcmd in Subcommands do
    s += "enable #{subcmd.name} -- #{subcmd.short_help}\n"
  end
  return s
end

.help_commandObject



90
91
92
# File 'lib/ruby-debug/commands/enable.rb', line 90

def help_command
  'enable'
end

Instance Method Details

#enable_breakpoints(args) ⇒ Object



81
82
83
# File 'lib/ruby-debug/commands/enable.rb', line 81

def enable_breakpoints(args)
  enable_disable_breakpoints("Enable", args)
end

#enable_display(args) ⇒ Object



85
86
87
# File 'lib/ruby-debug/commands/enable.rb', line 85

def enable_display(args)
  enable_disable_display("Enable", args)
end

#executeObject



66
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/ruby-debug/commands/enable.rb', line 66

def execute
  if not @match[1]
    errmsg pr("toggle.errors.syntax", toggle: "enable")
  else
    args = @match[1].split(/[ \t]+/)
    param = args.shift
    subcmd = find(Subcommands, param)
    if subcmd
      send("enable_#{subcmd.name}", args)
    else
      send("enable_breakpoints", args.unshift(param))
    end
  end
end

#regexpObject



62
63
64
# File 'lib/ruby-debug/commands/enable.rb', line 62

def regexp
  /^\s* en(?:able)? (?:\s+(.*))?$/ix
end