When debugging a program, we often use breakpoints to track the execution of the code, so it may be a lot of time to hit a lot of breakpoint, when we know the program's approximate execution process, this time the breakpoint is not very necessary. But we do not want to immediately remove all the breakpoints, because we hit these breakpoints is likely to be a key step in the execution of the program, the next time may also use these breakpoints, we can through the tool's " Skip all Breakpoints " function to achieve our needs. Let's talk about how chrome skips all breakpoints, and then how eclipse skips all breakpoints.
Copyright Notice: This article for Bo Master original article, without Bo Master permission not reproduced.
Original address:
Https://www.cnblogs.com/poterliu/p/9273416.html
1. Chrome browser blocks all breakpoints
According to the ordinal click, you can debug JS breakpoint, note the 4th step Gray, indicating: activate all Breakpoints .
2. Chrome browser Skips all breakpoints
Notice the button in the upper right corner of the red circle, the left mouse button click on the Blue, indicating: Ignore All breakpoints .
3. Eclipse skips all breakpoints
This is very easy to find, in the Eclipse menu bar, usually block all breakpoints, when you need to skip all breakpoints, click on a red circle button will ignore all breakpoints.
End of full text
Chrome browser skips (ignores) all JS breakpoints