()
| 570 | const dude = { |
| 571 | killCount: 0, |
| 572 | slay() { |
| 573 | this.killCount += 1; |
| 574 | return aether._shouldYield = true; |
| 575 | }, |
| 576 | getKillCount() { return this.killCount; } |
| 577 | }; |
| 578 | const code = `\ |
nothing calls this directly
no outgoing calls
no test coverage detected