Add const versions of SBFrame::GetFunctionName and SBFrame::IsInlined.

http://reviews.llvm.org/D10711

llvm-svn: 240660
This commit is contained in:
Oleksiy Vyalov
2015-06-25 17:41:41 +00:00
parent 5fbe3ccb49
commit 05f75e9ffb
3 changed files with 26 additions and 3 deletions

View File

@@ -128,6 +128,9 @@ public:
const char *
GetFunctionName();
const char *
GetFunctionName() const;
%feature("docstring", "
/// Return true if this frame represents an inlined function.
///
@@ -135,7 +138,10 @@ public:
") IsInlined;
bool
IsInlined();
bool
IsInlined() const;
%feature("docstring", "
/// The version that doesn't supply a 'use_dynamic' value will use the
/// target's default.