(actions: Action[], changes = this.createChanges())
| 212 | } |
| 213 | |
| 214 | executeActions(actions: Action[], changes = this.createChanges()) { |
| 215 | for(let action of actions) { |
| 216 | action.execute(this.multiIndex, [], changes); |
| 217 | } |
| 218 | let committed = changes.commit(); |
| 219 | return this.fixpoint(changes, this.blocksFromCommit(committed)); |
| 220 | } |
| 221 | |
| 222 | fixpoint(changes = new Changes(this.multiIndex), blocks = this.getAllBlocks()) { |
| 223 | let perf = this.perf; |
no test coverage detected