Javascript supports multiple statements on the same line. We need to support single step on these and perhaps breakpoints within lines.
```
var I =0;i=I+5;var j=10;var k = I+j;
```
```
var I =0;i=I+5;var j=10;var k = I+j;
```