@Ben Tanner I use this constantly with 2.0 code. I step into functions or step over with no issues. I set the breakpoints in the 2.0 code when i start debugging. Are you trying to debug ad hoc script or exisisting scripts?
b
Ben Tanner
02/27/2020, 5:53 PM
Ad hoc at the moment. I can use log statements but it steps right over the function.
g
GeneralKenobi
02/27/2020, 6:08 PM
I typically and the var x=0; before it exisists and add a breakpoint to it to review previous items. if you add a break point where the function starts you can step into it.
b
Ben Tanner
02/27/2020, 6:19 PM
Apparently not all lines are created equal. I've done similar to what you've suggested in the past. I just played around with where that was placed in my code and got the breakpoint recognized! I still can't get it to break in a loop but it's better than where I started. Thanks for the response.