(i: Iterator[str])
| 53 | |
| 54 | |
| 55 | def read_until_empty_line(i: Iterator[str]) -> List[str]: |
| 56 | li = [] |
| 57 | while True: |
| 58 | line = next(i).rstrip("\r\n") |
| 59 | if not line: |
| 60 | return li |
| 61 | li.append(line.strip()) |
| 62 | |
| 63 | |
| 64 | def extract_swift_files_from_swiftc(command): |
no test coverage detected