(cm, line, ch, bias)
| 2478 | // Get a {top, bottom, left, right} box (in line-local coordinates) |
| 2479 | // for a given character. |
| 2480 | function measureChar(cm, line, ch, bias) { |
| 2481 | return measureCharPrepared(cm, prepareMeasureForLine(cm, line), ch, bias); |
| 2482 | } |
| 2483 | |
| 2484 | // Find a line view that corresponds to the given line number. |
| 2485 | function findViewForLine(cm, lineN) { |
no test coverage detected