()
| 89 | |
| 90 | // Test step into function call from a function with some local variables. |
| 91 | function call4() { |
| 92 | var alias = g; |
| 93 | debugger; |
| 94 | alias.call(null, 3); |
| 95 | var aLocalVar = 'test'; |
| 96 | var anotherLocalVar = g(aLocalVar) + 's'; |
| 97 | var yetAnotherLocal = 10; |
| 98 | } |
| 99 | |
| 100 | // Test step into function apply from a function without local variables. |
| 101 | function apply1() { |