diff options
| author | Caroline Tice <ctice@apple.com> | 2010-09-15 06:56:39 +0000 |
|---|---|---|
| committer | Caroline Tice <ctice@apple.com> | 2010-09-15 06:56:39 +0000 |
| commit | 7d9edf670b518e80af18a39366a316f1288280f5 (patch) | |
| tree | f3c2f98e7cf90dc34c4b622349b066d10703b18e /lldb/source/Commands/CommandObjectSettings.h | |
| parent | 6dbd39838d785028d521e7916ae938e905340fff (diff) | |
| download | bcm5719-llvm-7d9edf670b518e80af18a39366a316f1288280f5.tar.gz bcm5719-llvm-7d9edf670b518e80af18a39366a316f1288280f5.zip | |
Modify "settings list" so you can specify a particular instance setting name,
or a settings prefix, and it will list information about the subset of settings
you requested. Also added tab-completion (now that it takes an optional argument).
llvm-svn: 113952
Diffstat (limited to 'lldb/source/Commands/CommandObjectSettings.h')
| -rw-r--r-- | lldb/source/Commands/CommandObjectSettings.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectSettings.h b/lldb/source/Commands/CommandObjectSettings.h index 0bfb3caff3c..13b51442d0b 100644 --- a/lldb/source/Commands/CommandObjectSettings.h +++ b/lldb/source/Commands/CommandObjectSettings.h @@ -149,6 +149,17 @@ public: Args& command, CommandReturnObject &result); + virtual int + HandleArgumentCompletion (CommandInterpreter &interpreter, + Args &input, + int &cursor_index, + int &cursor_char_position, + OptionElementVector &opt_element_vector, + int match_start_point, + int max_return_elements, + bool &word_complete, + StringList &matches); + private: }; |

