()
| 399 | const dude = { |
| 400 | killCount: 0, |
| 401 | slay() { |
| 402 | this.killCount += 1; |
| 403 | return aether._shouldYield = true; |
| 404 | }, |
| 405 | getKillCount() { return this.killCount; } |
| 406 | }; |
| 407 | const code = `\ |
nothing calls this directly
no outgoing calls
no test coverage detected