mirror of
https://github.com/intel/llvm.git
synced 2026-01-15 12:25:46 +08:00
Cleaned up the API logging a lot more to reduce redundant information and
keep the file size a bit smaller. Exposed SBValue::GetExpressionPath() so SBValue users can get an expression path for their values. llvm-svn: 117851
This commit is contained in:
@@ -38,14 +38,14 @@
|
||||
using namespace lldb;
|
||||
using namespace lldb_private;
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// Constructors
|
||||
//----------------------------------------------------------------------
|
||||
SBThread::SBThread () :
|
||||
m_opaque_sp ()
|
||||
{
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// Thread constructor
|
||||
//----------------------------------------------------------------------
|
||||
SBThread::SBThread (const ThreadSP& lldb_object_sp) :
|
||||
m_opaque_sp (lldb_object_sp)
|
||||
{
|
||||
@@ -56,6 +56,18 @@ SBThread::SBThread (const SBThread &rhs) :
|
||||
{
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// Assignment operator
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
const lldb::SBThread &
|
||||
SBThread::operator = (const SBThread &rhs)
|
||||
{
|
||||
if (this != &rhs)
|
||||
m_opaque_sp = rhs.m_opaque_sp;
|
||||
return *this;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// Destructor
|
||||
//----------------------------------------------------------------------
|
||||
@@ -490,14 +502,6 @@ SBThread::GetFrameAtIndex (uint32_t idx)
|
||||
return sb_frame;
|
||||
}
|
||||
|
||||
const lldb::SBThread &
|
||||
SBThread::operator = (const SBThread &rhs)
|
||||
{
|
||||
if (this != &rhs)
|
||||
m_opaque_sp = rhs.m_opaque_sp;
|
||||
return *this;
|
||||
}
|
||||
|
||||
bool
|
||||
SBThread::operator == (const SBThread &rhs) const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user