It was from version 0.47 that my breakpoints in the tool for creating chrome technically stopped at the right line, but they were displayed differently in the source code panel. there would always be 1 or 2 line shifts between the actual breakpoint and the highlighted blue line. which makes it very difficult to debug as it never showed correctly, has anyone heard of a solution?
if(true){
this.anyfunction();
debugger;
var toto = 10;
toto ++;
}
In this example, the first blue line selected in the source code should be toto ++, while toto will be undefined if you add a clock to this, so I assume that the breakpoint is correctly pressed, but there is a problem with the display ...
source
share