(historyIndex = this.state.historyIndex + 1)
| 14251 | })); |
| 14252 | } |
| 14253 | redo(historyIndex = this.state.historyIndex + 1) { |
| 14254 | if (historyIndex >= this.state.historyItems.length) return; |
| 14255 | const newState = this.replay(historyIndex); |
| 14256 | this.rebaseFilter = true; |
| 14257 | this.setState(Object.assign(Object.assign({}, newState), { |
| 14258 | historyIndex |
| 14259 | })); |
| 14260 | } |
| 14261 | changespecCapabilities(specCapabilities) { |
| 14262 | this.setState({ |
| 14263 | specCapabilities |
no test coverage detected