Debugging in GoLand - Skip stepping through function
Consider this - I set a breakpoint at a function call.. I step into the function.. stepping through each line ("step to the next line executed button").. I reach another function call .. I do not want to step through this function(I do want it to be executed though), how do I skip stepping through this function and execute it and move to the next line to be executed?
Is this possible?
Please sign in to leave a comment.
Please have a look at our help page which describes the operations available. In this case, I believe that "Step over" is what you are looking for.
https://www.jetbrains.com/help/go/debug-tool-window.html#steptoolbar
Thank you!