| 421 | it("Call non-this undefined function x()", function() { |
| 422 | const history = []; |
| 423 | const log = s => history.push(s); |
| 424 | const attack = () => history.push('attack'); |
| 425 | const selfValue = {say: log, attack}; |
| 426 | const code = "x()"; |
nothing calls this directly
no outgoing calls
no test coverage detected