(src: str, pos: Pos, chars: Iterable[str])
| 230 | |
| 231 | |
| 232 | def skip_chars(src: str, pos: Pos, chars: Iterable[str]) -> Pos: |
| 233 | try: |
| 234 | while src[pos] in chars: |
| 235 | pos += 1 |
| 236 | except IndexError: |
| 237 | pass |
| 238 | return pos |
| 239 | |
| 240 | |
| 241 | def skip_until( |
no outgoing calls
no test coverage detected