(evaluation: Evaluation)
| 79 | } |
| 80 | |
| 81 | setup(evaluation: Evaluation) { |
| 82 | if(this.interval !== undefined) { |
| 83 | this.timeout = setTimeout(() => { |
| 84 | evaluation.executeActions(this.timeActions()); |
| 85 | this.run(evaluation); |
| 86 | }, 0) |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | close() { |
| 91 | clearTimeout(this.timeout); |
no test coverage detected