Bug 1414684 Comment 1 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

I'm fixing this in 1663847. I'll post before and after screenshots of the debugger when I break on the `console.log` here:
```
    function outer(a, b) {
      function inner(x, y) {
        console.log("Hello");
        return x + y;
      }
      return inner(a + 4, b + 6);
    }
    outer(1, 3);
```
I'm fixing this in 1663847. I'll post before and after screenshots of the debugger when I break on the `console.log` here:
```js
    function outer(a, b) {
      function inner(x, y) {
        console.log("Hello");
        return x + y;
      }
      return inner(a + 4, b + 6);
    }
    outer(1, 3);
```

Back to Bug 1414684 Comment 1