(e)
| 262 | // callbacks |
| 263 | |
| 264 | onInfiniteLoop (e) { |
| 265 | if (!e.firstWorld || (e.god !== this.god)) { return } |
| 266 | this.openModalView(new InfiniteLoopModal({ nonUserCodeProblem: e.nonUserCodeProblem, problem: e.problem, timedOut: e.timedOut })) |
| 267 | return (window.tracker != null ? window.tracker.trackEvent('Saw Initial Infinite Loop', { level: this.world.name, label: this.world.name }) : undefined) |
| 268 | } |
| 269 | |
| 270 | // initialization |
| 271 |
nothing calls this directly
no test coverage detected