poohbar
09/13/2019, 1:44 PMclass MyClass(private val xyz: String)
It seems like the debuggers stops in the constructor which is what I would expect. I would like to add a condition to the breakpoint to only stop when xyz
equals "myString"
but it won't let me access xyz
in the input field. Is this is a bug?Czar
09/17/2019, 8:15 AMxyz == "myString"
and the debugger dutifully stops, if I change the condition to !=
it doesn't stop.
Can you provide more details, what exactly doesn't work? Is the condition dialogue showing an error, is the debugger not stopping, is there an exception?poohbar
09/17/2019, 12:25 PMxyz
in red as if the variable could never be in scope. I am glad it's supposed to work that way so maybe it's just a bug. Thanks for checking.Alexey Belkov [JB]
09/18/2019, 9:00 AMpoohbar
09/18/2019, 1:10 PM