Is it possible to create a breakpoint where the condition is that its the start of the recursive process? In other words, the stack should only have one call to the function.
IE consider this workflow:
Main func -> call recursive func -> hit breakpoint -> continue -> recursively call self -> DONT hit breakpoint -> continue recursion.