From: Ilia K Date: Fri, 20 Feb 2015 17:56:05 +0000 (+0000) Subject: Minor changes after r229901: move the CMICmdCmdStackSelectFrame to the end of header... X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b6f705b6edd19c152125bd4eb147f04ff367c751;p=platform%2Fupstream%2Fllvm.git Minor changes after r229901: move the CMICmdCmdStackSelectFrame to the end of header file llvm-svn: 230028 --- diff --git a/lldb/tools/lldb-mi/MICmdCmdStack.h b/lldb/tools/lldb-mi/MICmdCmdStack.h index affe9a5..c325424 100644 --- a/lldb/tools/lldb-mi/MICmdCmdStack.h +++ b/lldb/tools/lldb-mi/MICmdCmdStack.h @@ -183,9 +183,12 @@ class CMICmdCmdStackListArguments : public CMICmdBase //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. -// *this class implements MI command "stack-select-frame". +// *this class implements MI command "stack-list-locals". +// Gotchas: None. +// Authors: Illya Rudkin 24/03/2014. +// Changes: None. //-- -class CMICmdCmdStackSelectFrame : public CMICmdBase +class CMICmdCmdStackListLocals : public CMICmdBase { // Statics: public: @@ -194,7 +197,7 @@ class CMICmdCmdStackSelectFrame : public CMICmdBase // Methods: public: - /* ctor */ CMICmdCmdStackSelectFrame(void); + /* ctor */ CMICmdCmdStackListLocals(void); // Overridden: public: @@ -203,22 +206,25 @@ class CMICmdCmdStackSelectFrame : public CMICmdBase virtual bool Acknowledge(void); virtual bool ParseArgs(void); // From CMICmnBase - /* dtor */ virtual ~CMICmdCmdStackSelectFrame(void); + /* dtor */ virtual ~CMICmdCmdStackListLocals(void); // Attributes: private: - bool m_bFrameInvalid; // True = yes invalid frame, false = ok - const CMIUtilString m_constStrArgFrame; + bool m_bThreadInvalid; // True = yes invalid thread, false = thread object valid + CMICmnMIValueList m_miValueList; + const CMIUtilString m_constStrArgThread; // Not specified in MI spec but Eclipse gives this option + const CMIUtilString m_constStrArgFrame; // Not specified in MI spec but Eclipse gives this option + const CMIUtilString m_constStrArgPrintValues; + const CMIUtilString m_constStrArgNoValues; + const CMIUtilString m_constStrArgAllValues; + const CMIUtilString m_constStrArgSimpleValues; }; //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. -// *this class implements MI command "stack-list-locals". -// Gotchas: None. -// Authors: Illya Rudkin 24/03/2014. -// Changes: None. +// *this class implements MI command "stack-select-frame". //-- -class CMICmdCmdStackListLocals : public CMICmdBase +class CMICmdCmdStackSelectFrame : public CMICmdBase { // Statics: public: @@ -227,7 +233,7 @@ class CMICmdCmdStackListLocals : public CMICmdBase // Methods: public: - /* ctor */ CMICmdCmdStackListLocals(void); + /* ctor */ CMICmdCmdStackSelectFrame(void); // Overridden: public: @@ -236,16 +242,10 @@ class CMICmdCmdStackListLocals : public CMICmdBase virtual bool Acknowledge(void); virtual bool ParseArgs(void); // From CMICmnBase - /* dtor */ virtual ~CMICmdCmdStackListLocals(void); + /* dtor */ virtual ~CMICmdCmdStackSelectFrame(void); // Attributes: private: - bool m_bThreadInvalid; // True = yes invalid thread, false = thread object valid - CMICmnMIValueList m_miValueList; - const CMIUtilString m_constStrArgThread; // Not specified in MI spec but Eclipse gives this option - const CMIUtilString m_constStrArgFrame; // Not specified in MI spec but Eclipse gives this option - const CMIUtilString m_constStrArgPrintValues; - const CMIUtilString m_constStrArgNoValues; - const CMIUtilString m_constStrArgAllValues; - const CMIUtilString m_constStrArgSimpleValues; + bool m_bFrameInvalid; // True = yes invalid frame, false = ok + const CMIUtilString m_constStrArgFrame; };