()
| 8972 | { runInOp(this.cm, function () { return input.cm.curOp.selectionChanged = true; }); } |
| 8973 | |
| 8974 | function poll() { |
| 8975 | if (input.cm.state.focused) { |
| 8976 | input.pollSelection(); |
| 8977 | input.polling.set(input.cm.options.pollInterval, poll); |
| 8978 | } |
| 8979 | } |
| 8980 | this.polling.set(this.cm.options.pollInterval, poll); |
| 8981 | }; |
| 8982 |
nothing calls this directly
no test coverage detected