(data: ReadBuffer)
| 375 | |
| 376 | |
| 377 | def read_str(data: ReadBuffer) -> str: |
| 378 | assert read_tag(data) == LITERAL_STR |
| 379 | return read_str_bare(data) |
| 380 | |
| 381 | |
| 382 | def write_str(data: WriteBuffer, value: str) -> None: |
no outgoing calls
no test coverage detected
searching dependent graphs…