We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3440518 commit ebadf2bCopy full SHA for ebadf2b
LLDBPlugin/touchlab_kotlin_lldb/stepping/KonanHook.py
@@ -36,5 +36,6 @@ def is_kotlin_bridging_function() -> bool:
36
stop_reason = execution_context.frame.thread.GetStopDescription(MAX_SIZE_FOR_STOP_REASON)
37
plan = PLAN_FROM_STOP_REASON.get(stop_reason)
38
if plan is not None:
39
- execution_context.thread.StepUsingScriptedThreadPlan('{}.{}'.format(__name__, plan))
+ execution_context.thread.StepUsingScriptedThreadPlan('{}.{}'.format(__name__, plan), False)
40
+ return False
41
return True
0 commit comments