4 def StepOver(debugger
, args
, result
, dict):
6 Step over a given number of times instead of only just once
8 arg_split
= args
.split(" ")
10 count
= int(arg_split
[0])
11 for i
in range(0, count
):
12 debugger
.GetSelectedTarget().GetProcess().GetSelectedThread().StepOver(
18 def __lldb_init_module(debugger
, session_dict
):
19 # by default, --synchronicity is set to synchronous
20 debugger
.HandleCommand("command script add -f mysto.StepOver mysto")