()
| 70 | |
| 71 | // Test step into function call from a function with some local variables. |
| 72 | function call2() { |
| 73 | var aLocalVar = 'test'; |
| 74 | var anotherLocalVar = g(aLocalVar) + 's'; |
| 75 | var yetAnotherLocal = 10; |
| 76 | debugger; |
| 77 | g.call(null, 3); |
| 78 | } |
| 79 | |
| 80 | // Test step into function call which is a part of an expression. |
| 81 | function call3() { |