Does step work?

I downloaded an eval version to....eval.....the step function (f8) does not step line for line of js code (one statement per line).  Rather it runs to the next breakpoint.

Does webstorm step line by line?

0

Step Over (F8) normally steps to next statement. Can you provide an example where this doesn't work for you?
See also https://youtrack.jetbrains.com/issue/WEB-15534 -  may be related

0
Avatar
Permanently deleted user
/**
* Created by pdlouis on 4/17/2015.
*/

var x = 1;

console.log("hello world");
console.log("its a sunny day!");
console.log("var = " + x.toString());
console.log("goodbye");


It will not stop on line 1, so I break at line 2 (breakpoint).

Then I step and it runs to the last line (breakpoint).

0

请先登录再写评论。