[Lldb-commits] [lldb] r230028 - Minor changes after r229901: move the CMICmdCmdStackSelectFrame to the end of header file
Ilia K
ki.stfu at gmail.com
Fri Feb 20 09:56:05 PST 2015
Author: ki.stfu
Date: Fri Feb 20 11:56:05 2015
New Revision: 230028
URL: http://llvm.org/viewvc/llvm-project?rev=230028&view=rev
Log:
Minor changes after r229901: move the CMICmdCmdStackSelectFrame to the end of header file
Modified:
lldb/trunk/tools/lldb-mi/MICmdCmdStack.h
Modified: lldb/trunk/tools/lldb-mi/MICmdCmdStack.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-mi/MICmdCmdStack.h?rev=230028&r1=230027&r2=230028&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-mi/MICmdCmdStack.h (original)
+++ lldb/trunk/tools/lldb-mi/MICmdCmdStack.h Fri Feb 20 11:56:05 2015
@@ -183,9 +183,12 @@ class CMICmdCmdStackListArguments : publ
//++ ============================================================================
// 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
// Methods:
public:
- /* ctor */ CMICmdCmdStackSelectFrame(void);
+ /* ctor */ CMICmdCmdStackListLocals(void);
// Overridden:
public:
@@ -203,22 +206,25 @@ class CMICmdCmdStackSelectFrame : public
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
// Methods:
public:
- /* ctor */ CMICmdCmdStackListLocals(void);
+ /* ctor */ CMICmdCmdStackSelectFrame(void);
// Overridden:
public:
@@ -236,16 +242,10 @@ class CMICmdCmdStackListLocals : public
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;
};
More information about the lldb-commits
mailing list