is it possible in idea to set a breakpoint in a la...
# intellij
c
is it possible in idea to set a breakpoint in a lambda without putting it into a separate line? for example
Copy code
simpleFields.map { fieldInfo -> lazyResult(row, fieldInfo) },
what I currently do is i change the source to put the
fieldInfo -> lazyResult(row, fieldInfo)
part on a separate line and set the breakpoint there, but is there a simpler way?
oh nm it even asks where i want the breakpoint when i click on the line. great!
👍 1