(ch, right)
| 3669 | preparedMeasure = prepareMeasureForLine(cm, lineObj); |
| 3670 | } |
| 3671 | function get(ch, right) { |
| 3672 | var m = measureCharPrepared(cm, preparedMeasure, ch, right ? "right" : "left", varHeight); |
| 3673 | if (right) { |
| 3674 | m.left = m.right; |
| 3675 | } else { |
| 3676 | m.right = m.left; |
| 3677 | } |
| 3678 | return intoCoordSystem(cm, lineObj, m, context); |
| 3679 | } |
| 3680 | var order = getOrder(lineObj, cm.doc.direction), |
| 3681 | ch = pos.ch, |
| 3682 | sticky = pos.sticky; |
no test coverage detected