(cm, pos, context, lineObj, bias)
| 2713 | } |
| 2714 | |
| 2715 | function charCoords(cm, pos, context, lineObj, bias) { |
| 2716 | if (!lineObj) lineObj = getLine(cm.doc, pos.line); |
| 2717 | return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, bias), context); |
| 2718 | } |
| 2719 | |
| 2720 | // Returns a box for a given cursor position, which may have an |
| 2721 | // 'other' property containing the position of the secondary cursor |
no test coverage detected