()
| 79 | |
| 80 | // Test step into function call which is a part of an expression. |
| 81 | function call3() { |
| 82 | var alias = g; |
| 83 | debugger; |
| 84 | var r = 10 + alias.call(null, 3); |
| 85 | var aLocalVar = 'test'; |
| 86 | var anotherLocalVar = g(aLocalVar) + 's'; |
| 87 | var yetAnotherLocal = 10; |
| 88 | } |
| 89 | |
| 90 | // Test step into function call from a function with some local variables. |
| 91 | function call4() { |