I know a Swift function by name and wanted to call the function from LLDB for debugging purposes.
I tried doing:
expr -- function_with_a_breakpoint()
This runs the function and parses correctly but doesn't hit the breakpoints I made. Ideally, I want to trigger from within LLDB without having to manually trigger the function from the app UI, for example. This would be more convenient.