()
| 125 | |
| 126 | // Test step into function apply from a function with some local variables. |
| 127 | function apply4() { |
| 128 | var alias = g; |
| 129 | debugger; |
| 130 | alias.apply(null, [3]); |
| 131 | var aLocalVar = 'test'; |
| 132 | var anotherLocalVar = g(aLocalVar) + 's'; |
| 133 | var yetAnotherLocal = 10; |
| 134 | } |
| 135 | |
| 136 | // Test step into bound function. |
| 137 | function bind1() { |