(cm, line, ch, bias)
| 2367 | // Get a {top, bottom, left, right} box (in line-local coordinates) |
| 2368 | // for a given character. |
| 2369 | function measureChar(cm, line, ch, bias) { |
| 2370 | return measureCharPrepared(cm, prepareMeasureForLine(cm, line), ch, bias) |
| 2371 | } |
| 2372 | |
| 2373 | // Find a line view that corresponds to the given line number. |
| 2374 | function findViewForLine(cm, lineN) { |
no test coverage detected