(receiver)
| 97 | // the receiver for non-strict mode functions. |
| 98 | function NonStrict() { debugger; } |
| 99 | function TestNonStrict(receiver) { |
| 100 | // null and undefined should be transformed to the global object and |
| 101 | // primitives should be wrapped. |
| 102 | expected_receiver = (receiver == null) ? this : Object(receiver); |
| 103 | NonStrict.call(receiver); |
| 104 | } |
| 105 | |
| 106 | listener_delegate = function(exec_state) { |
| 107 | var receiver = exec_state.frame().receiver(); |
no test coverage detected
searching dependent graphs…