(code)
| 93 | this.onReveal(code); |
| 94 | } |
| 95 | doRedo(code) { |
| 96 | this.historyIndex++; |
| 97 | var state = this.history[this.historyIndex]; |
| 98 | code.string = state.string; |
| 99 | code.select(state.selectionOffset, state.selectionLength); |
| 100 | this.insertionOffset = -1; |
| 101 | this.onEdited(code); |
| 102 | this.onSelected(code); |
| 103 | this.onReveal(code); |
| 104 | } |
| 105 | doSelectAll(code) { |
| 106 | code.select(0, code.length); |
| 107 | this.onSelected(code); |
nothing calls this directly
no test coverage detected