()
| 115 | |
| 116 | // Test step into function apply which is a part of an expression. |
| 117 | function apply3() { |
| 118 | var alias = g; |
| 119 | debugger; |
| 120 | var r = 10 + alias.apply(null, [3, 'unused arg']); |
| 121 | var aLocalVar = 'test'; |
| 122 | var anotherLocalVar = g(aLocalVar) + 's'; |
| 123 | var yetAnotherLocal = 10; |
| 124 | } |
| 125 | |
| 126 | // Test step into function apply from a function with some local variables. |
| 127 | function apply4() { |