[Lldb-commits] [lldb] r137213 - /lldb/trunk/source/Commands/CommandObjectType.cpp
Enrico Granata
granata.enrico at gmail.com
Wed Aug 10 08:29:15 PDT 2011
Author: enrico
Date: Wed Aug 10 10:29:15 2011
New Revision: 137213
URL: http://llvm.org/viewvc/llvm-project?rev=137213&view=rev
Log:
renaming command "type synth" to "type synthetic" for added readability
Modified:
lldb/trunk/source/Commands/CommandObjectType.cpp
Modified: lldb/trunk/source/Commands/CommandObjectType.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectType.cpp?rev=137213&r1=137212&r2=137213&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectType.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectType.cpp Wed Aug 10 10:29:15 2011
@@ -1973,7 +1973,7 @@
public:
CommandObjectTypeSynthList (CommandInterpreter &interpreter) :
CommandObject (interpreter,
- "type synth list",
+ "type synthetic list",
"Show a list of current synthetic providers.",
NULL), m_options(interpreter)
{
@@ -2180,7 +2180,7 @@
public:
CommandObjectTypeSynthDelete (CommandInterpreter &interpreter) :
CommandObject (interpreter,
- "type synth delete",
+ "type synthetic delete",
"Delete an existing synthetic provider for a type.",
NULL), m_options(interpreter)
{
@@ -2340,7 +2340,7 @@
public:
CommandObjectTypeSynthClear (CommandInterpreter &interpreter) :
CommandObject (interpreter,
- "type synth clear",
+ "type synthetic clear",
"Delete all existing synthetic providers.",
NULL), m_options(interpreter)
{
@@ -2711,7 +2711,7 @@
CommandObjectTypeSynthAdd::CommandObjectTypeSynthAdd (CommandInterpreter &interpreter) :
CommandObject (interpreter,
- "type synth add",
+ "type synthetic add",
"Add a new synthetic provider for a type.",
NULL), m_options (interpreter)
{
@@ -2816,9 +2816,9 @@
public:
CommandObjectTypeSynth (CommandInterpreter &interpreter) :
CommandObjectMultiword (interpreter,
- "type synth",
+ "type synthetic",
"A set of commands for operating on synthetic type representations",
- "type synth [<sub-command-options>] ")
+ "type synthetic [<sub-command-options>] ")
{
LoadSubCommand ("add", CommandObjectSP (new CommandObjectTypeSynthAdd (interpreter)));
LoadSubCommand ("clear", CommandObjectSP (new CommandObjectTypeSynthClear (interpreter)));
@@ -2887,7 +2887,7 @@
LoadSubCommand ("category", CommandObjectSP (new CommandObjectTypeCategory (interpreter)));
LoadSubCommand ("format", CommandObjectSP (new CommandObjectTypeFormat (interpreter)));
LoadSubCommand ("summary", CommandObjectSP (new CommandObjectTypeSummary (interpreter)));
- LoadSubCommand ("synth", CommandObjectSP (new CommandObjectTypeSynth (interpreter)));
+ LoadSubCommand ("synthetic", CommandObjectSP (new CommandObjectTypeSynth (interpreter)));
}
More information about the lldb-commits
mailing list