class Byebug::DisableCommand
def execute
def execute return errmsg "\"disable\" must be followed by \"display\", " \ "\"breakpoints\" or breakpoint numbers.\n" unless @match[1] args = @match[1].split(/[ \t]+/) param = args.shift subcmd = Command.find(Subcommands, param) if subcmd send("disable_#{subcmd.name}", args) else send('disable_breakpoints', args.unshift(param)) end end