(box, x, y, left)
| 4127 | // Returns true if the given side of a box is after the given |
| 4128 | // coordinates, in top-to-bottom, left-to-right order. |
| 4129 | function boxIsAfter(box, x, y, left) { |
| 4130 | return box.bottom <= y ? false : box.top > y ? true : (left ? box.left : box.right) > x |
| 4131 | } |
| 4132 | |
| 4133 | function coordsCharInner(cm, lineObj, lineNo$$1, x, y) { |
| 4134 | // Move y into line-local coordinate space |
no outgoing calls
no test coverage detected