Repro for crbug.com/1370200
This illustrates the problem with confusing stepping between comma and semicolon.
Steps
- Open DevTools
- Click and Step Over the code until you hit the end of the function
semicolon
- Observe that the debugger pauses exactly once on every line
- Click and Step Over the code until you hit the end of the function
comma
- Observe that the debugger jumps over two calls to
foo
without stopping