[libc++] Remove duplicated _LIBCPP_HIDE_FROM_ABI from a few declarations (#122323)
[llvm-project.git] / lldb / test / API / commands / command / script / mysto.py
blobed83f9fb9981cb2ef854c84bc0aa33d025e873fd
1 import lldb
4 def StepOver(debugger, args, result, dict):
5 """
6 Step over a given number of times instead of only just once
7 """
8 arg_split = args.split(" ")
9 print(type(arg_split))
10 count = int(arg_split[0])
11 for i in range(0, count):
12 debugger.GetSelectedTarget().GetProcess().GetSelectedThread().StepOver(
13 lldb.eOnlyThisThread
15 print("step<%d>" % i)
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")
21 return None