(cm, pos, context, lineObj, bias)
| 2819 | } |
| 2820 | |
| 2821 | function charCoords(cm, pos, context, lineObj, bias) { |
| 2822 | if (!lineObj) lineObj = getLine(cm.doc, pos.line); |
| 2823 | return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, bias), context); |
| 2824 | } |
| 2825 | |
| 2826 | // Returns a box for a given cursor position, which may have an |
| 2827 | // 'other' property containing the position of the secondary cursor |
no test coverage detected