(cm, pos, context, lineObj, bias)
| 1704 | } |
| 1705 | |
| 1706 | function charCoords(cm, pos, context, lineObj, bias) { |
| 1707 | if (!lineObj) lineObj = getLine(cm.doc, pos.line); |
| 1708 | return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, bias), context); |
| 1709 | } |
| 1710 | |
| 1711 | // Returns a box for a given cursor position, which may have an |
| 1712 | // 'other' property containing the position of the secondary cursor |
no test coverage detected