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 {
93
93
// guess the language type from the mangled name.
94
94
lldb::LanguageType GuessLanguage () const ;
95
95
96
+ LLDB_DEPRECATED (" Use SBFrame::IsHidden() instead." )
96
97
bool IsSwiftThunk () const ;
97
98
98
99
lldb::SBStructuredData GetLanguageSpecificData () const ;
Original file line number Diff line number Diff line change @@ -408,6 +408,17 @@ class StackFrame : public ExecutionContextScope,
408
408
// / system implementation details this way.
409
409
bool IsHidden ();
410
410
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
+
411
422
// / Get the frame's demangled name.
412
423
// /
413
424
// / /// \return
You can’t perform that action at this time.
0 commit comments