Deleted Added
full compact
CommandObjectBreakpointCommand.cpp (254729) CommandObjectBreakpointCommand.cpp (258054)
1//===-- CommandObjectBreakpointCommand.cpp ----------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 626 unchanged lines hidden (view full) ---

635 { eScriptLanguagePython, "python", "Commands are in the Python language."},
636 { eSortOrderByName, "default-script", "Commands are in the default scripting language."},
637 { 0, NULL, NULL }
638};
639
640OptionDefinition
641CommandObjectBreakpointCommandAdd::CommandOptions::g_option_table[] =
642{
1//===-- CommandObjectBreakpointCommand.cpp ----------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 626 unchanged lines hidden (view full) ---

635 { eScriptLanguagePython, "python", "Commands are in the Python language."},
636 { eSortOrderByName, "default-script", "Commands are in the default scripting language."},
637 { 0, NULL, NULL }
638};
639
640OptionDefinition
641CommandObjectBreakpointCommandAdd::CommandOptions::g_option_table[] =
642{
643 { LLDB_OPT_SET_1, false, "one-liner", 'o', required_argument, NULL, 0, eArgTypeOneLiner,
643 { LLDB_OPT_SET_1, false, "one-liner", 'o', OptionParser::eRequiredArgument, NULL, 0, eArgTypeOneLiner,
644 "Specify a one-line breakpoint command inline. Be sure to surround it with quotes." },
645
644 "Specify a one-line breakpoint command inline. Be sure to surround it with quotes." },
645
646 { LLDB_OPT_SET_ALL, false, "stop-on-error", 'e', required_argument, NULL, 0, eArgTypeBoolean,
646 { LLDB_OPT_SET_ALL, false, "stop-on-error", 'e', OptionParser::eRequiredArgument, NULL, 0, eArgTypeBoolean,
647 "Specify whether breakpoint command execution should terminate on error." },
648
647 "Specify whether breakpoint command execution should terminate on error." },
648
649 { LLDB_OPT_SET_ALL, false, "script-type", 's', required_argument, g_script_option_enumeration, 0, eArgTypeNone,
649 { LLDB_OPT_SET_ALL, false, "script-type", 's', OptionParser::eRequiredArgument, g_script_option_enumeration, 0, eArgTypeNone,
650 "Specify the language for the commands - if none is specified, the lldb command interpreter will be used."},
651
650 "Specify the language for the commands - if none is specified, the lldb command interpreter will be used."},
651
652 { LLDB_OPT_SET_2, false, "python-function", 'F', required_argument, NULL, 0, eArgTypePythonFunction,
652 { LLDB_OPT_SET_2, false, "python-function", 'F', OptionParser::eRequiredArgument, NULL, 0, eArgTypePythonFunction,
653 "Give the name of a Python function to run as command for this breakpoint. Be sure to give a module name if appropriate."},
654
655 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
656};
657
658//-------------------------------------------------------------------------
659// CommandObjectBreakpointCommandDelete
660//-------------------------------------------------------------------------

--- 255 unchanged lines hidden ---
653 "Give the name of a Python function to run as command for this breakpoint. Be sure to give a module name if appropriate."},
654
655 { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL }
656};
657
658//-------------------------------------------------------------------------
659// CommandObjectBreakpointCommandDelete
660//-------------------------------------------------------------------------

--- 255 unchanged lines hidden ---