(evaluation: Evaluation, changes: Changes)
| 78 | } |
| 79 | |
| 80 | onFixpoint(evaluation: Evaluation, changes: Changes) { |
| 81 | super.onFixpoint(evaluation, changes); |
| 82 | let name = evaluation.databaseToName(this); |
| 83 | let result = changes.result({[name]: true}); |
| 84 | if(result.insert.length || result.remove.length) { |
| 85 | this.client.send(JSON.stringify(result)); |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | unregister(evaluation: Evaluation) { |
| 90 | let ix = this.evaluations.indexOf(evaluation); |
nothing calls this directly
no test coverage detected