(state: StateBlock, line: int)
| 18 | |
| 19 | |
| 20 | def getLine(state: StateBlock, line: int) -> str: |
| 21 | pos = state.bMarks[line] + state.tShift[line] |
| 22 | maximum = state.eMarks[line] |
| 23 | |
| 24 | # return state.src.substr(pos, max - pos) |
| 25 | return state.src[pos:maximum] |
| 26 | |
| 27 | |
| 28 | def escapedSplit(string: str) -> list[str]: |
no outgoing calls
no test coverage detected
searching dependent graphs…