File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ class LLDB_API SBFrame {
9393 // guess the language type from the mangled name.
9494 lldb::LanguageType GuessLanguage () const ;
9595
96+ LLDB_DEPRECATED (" Use SBFrame::IsHidden() instead." )
9697 bool IsSwiftThunk () const ;
9798
9899 lldb::SBStructuredData GetLanguageSpecificData () const ;
Original file line number Diff line number Diff line change @@ -408,6 +408,17 @@ class StackFrame : public ExecutionContextScope,
408408 // / system implementation details this way.
409409 bool IsHidden ();
410410
411+ // / Query whether this frame is a Swift Thunk.
412+ LLDB_DEPRECATED (" Use IsHidden() instead." )
413+ bool IsSwiftThunk ();
414+
415+ // / Get this frame language specific data.
416+ // /
417+ // / \return
418+ // / The StructuredDataImpl object containing the language specific data. Can
419+ // / be null.
420+ StructuredDataImpl *GetLanguageSpecificData ();
421+
411422 // / Get the frame's demangled name.
412423 // /
413424 // / /// \return
You can’t perform that action at this time.
0 commit comments