(cursor_offset: int, line: str)
| 49 | |
| 50 | |
| 51 | def line_with_cursor(cursor_offset: int, line: str) -> str: |
| 52 | return line[:cursor_offset] + "|" + line[cursor_offset:] |
| 53 | |
| 54 | |
| 55 | def encode(cursor_offset: int, line: str, result: LinePart | None) -> str: |
no outgoing calls
no test coverage detected