(line, ch, dir)
| 9325 | } |
| 9326 | |
| 9327 | function moveCharLogically(line, ch, dir) { |
| 9328 | var target = skipExtendingChars(line.text, ch + dir, dir) |
| 9329 | return target < 0 || target > line.text.length ? null : target |
| 9330 | } |
| 9331 | |
| 9332 | function moveLogically(line, start, dir) { |
| 9333 | var ch = moveCharLogically(line, start.ch, dir) |
no test coverage detected