(cm, line, ch, bias)
| 1498 | // Get a {top, bottom, left, right} box (in line-local coordinates) |
| 1499 | // for a given character. |
| 1500 | function measureChar(cm, line, ch, bias) { |
| 1501 | return measureCharPrepared(cm, prepareMeasureForLine(cm, line), ch, bias); |
| 1502 | } |
| 1503 | |
| 1504 | // Find a line view that corresponds to the given line number. |
| 1505 | function findViewForLine(cm, lineN) { |
no test coverage detected