Tadeas Kriz
07/18/2024, 6:21 PMJemo
07/18/2024, 6:47 PMTadeas Kriz
07/18/2024, 9:07 PMbreakpoint set --file SomeKotlinFile.kt --line 42
(or br s f SomeKotlinFile.kt -l 42
or b SomeKotlinFile.kt:42
) which isn't a great experience. So you'll always need access to the code if you want to set the breakpoint. But you can already use the LLDB command and it'll stop and you should see the frame. If you have the repository set in a way where SPM downloads even the Kotlin sources, it might be possible to set breakpoints in those files, but I'm not sure.Jemo
07/19/2024, 9:02 AMJemo
07/19/2024, 9:04 AM