Get the next valid character index in `lines`.
(lineno, col)
| 879 | return lineno, col |
| 880 | |
| 881 | def increment(lineno, col): |
| 882 | """Get the next valid character index in `lines`.""" |
| 883 | col += 1 |
| 884 | lineno, col = next_valid_char(lineno, col) |
| 885 | return lineno, col |
| 886 | |
| 887 | def nextline(lineno, col): |
| 888 | """Get the next valid character at least on the next line""" |
no test coverage detected
searching dependent graphs…