(box, x, y, left)
| 2737 | // Returns true if the given side of a box is after the given |
| 2738 | // coordinates, in top-to-bottom, left-to-right order. |
| 2739 | function boxIsAfter(box, x, y, left) { |
| 2740 | return box.bottom <= y ? false : box.top > y ? true : (left ? box.left : box.right) > x |
| 2741 | } |
| 2742 | |
| 2743 | function coordsCharInner(cm, lineObj, lineNo, x, y) { |
| 2744 | // Move y into line-local coordinate space |
no outgoing calls
no test coverage detected