()
| 106 | |
| 107 | // Test step into function apply from a function with some local variables. |
| 108 | function apply2() { |
| 109 | var aLocalVar = 'test'; |
| 110 | var anotherLocalVar = g(aLocalVar) + 's'; |
| 111 | var yetAnotherLocal = 10; |
| 112 | debugger; |
| 113 | g.apply(null, [3, 4]); |
| 114 | } |
| 115 | |
| 116 | // Test step into function apply which is a part of an expression. |
| 117 | function apply3() { |