(song)
| 160 | const safe = ["secret"]; |
| 161 | const music = []; |
| 162 | const inner = {addMusic(song) { return music.push(song); }}; |
| 163 | const outer = {entertain() { return inner.sing(); }}; |
| 164 | outer.entertain.burninate = () => safe.pop(); |
| 165 | const code = `\ |
nothing calls this directly
no outgoing calls
no test coverage detected