(cm, pos, context, lineObj, bias)
| 2827 | } |
| 2828 | |
| 2829 | function charCoords(cm, pos, context, lineObj, bias) { |
| 2830 | if (!lineObj) lineObj = getLine(cm.doc, pos.line); |
| 2831 | return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, bias), context); |
| 2832 | } |
| 2833 | |
| 2834 | // Returns a box for a given cursor position, which may have an |
| 2835 | // 'other' property containing the position of the secondary cursor |
no test coverage detected