gitlab.com/Raven-IO/raven-delve@v1.22.4/_fixtures/create_breakpoint_main.star (about)

     1  def main():
     2  	for f in functions().Funcs:
     3  		v = f.split('.')
     4  		if len(v) != 2:
     5  			continue
     6  		if v[0] != "main":
     7  			continue
     8  		if v[1][0] >= 'a' and v[1][0] <= 'z':
     9  			create_breakpoint({ "FunctionName": f, "Line": -1 }) # see documentation of RPCServer.CreateBreakpoint