(code)
| 87 | this.doClear(code); |
| 88 | } |
| 89 | doPaste(code) { |
| 90 | this.onChanging(code); |
| 91 | code.insert(shell.behavior.getClipboard()) |
| 92 | this.onChanged(code); |
| 93 | this.onReveal(code); |
| 94 | } |
| 95 | doRedo(code) { |
| 96 | this.historyIndex++; |
| 97 | var state = this.history[this.historyIndex]; |
nothing calls this directly
no test coverage detected