(cm)
| 4530 | } |
| 4531 | |
| 4532 | function getLastEditPos(cm) { |
| 4533 | var done = cm.doc.history.done; |
| 4534 | for (var i = done.length; i--;) { |
| 4535 | if (done[i].changes) { |
| 4536 | return copyCursor(done[i].changes[0].to); |
| 4537 | } |
| 4538 | } |
| 4539 | } |
| 4540 | |
| 4541 | var ExCommandDispatcher = function() { |
| 4542 | this.buildCommandMap_(); |
no test coverage detected