()
| 142 | |
| 143 | // Test step into apply of bound function. |
| 144 | function applyAndBind1() { |
| 145 | var bound = g.bind(null, 3); |
| 146 | debugger; |
| 147 | bound.apply(null, [3]); |
| 148 | var aLocalVar = 'test'; |
| 149 | var anotherLocalVar = g(aLocalVar) + 's'; |
| 150 | var yetAnotherLocal = 10; |
| 151 | } |
| 152 | |
| 153 | var testFunctions = |
| 154 | [call1, call2, call3, call4, apply1, apply2, apply3, apply4, bind1, |