(cm, pos, context, lineObj, bias)
| 2625 | } |
| 2626 | |
| 2627 | function charCoords(cm, pos, context, lineObj, bias) { |
| 2628 | if (!lineObj) { lineObj = getLine(cm.doc, pos.line); } |
| 2629 | return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, bias), context) |
| 2630 | } |
| 2631 | |
| 2632 | // Returns a box for a given cursor position, which may have an |
| 2633 | // 'other' property containing the position of the secondary cursor |
no test coverage detected