You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, some debuggers like LLDB support stepping to the end of a block. From LLDB help:
$ help thread step-over
-e <linenum> ( --end-linenumber <linenum> )
The line at which to stop stepping - defaults to the next line and only supported for step-in and step-over. You can also pass the string
'block' to step to the end of the current block. This is particularly use in conjunction with --step-target to step through a complex
calling sequence.
So the following steps to the end of the current block:
thread step-over -e block
Could this "block" verb be added to SteppingGranularity?
The text was updated successfully, but these errors were encountered:
DAP supports
SteppingGranularity
, which is defined asHowever, some debuggers like LLDB support stepping to the end of a block. From LLDB help:
So the following steps to the end of the current block:
Could this
"block"
verb be added toSteppingGranularity
?The text was updated successfully, but these errors were encountered: