(self, write_context, value: str)
| 402 | self.need_to_write_ref = False |
| 403 | |
| 404 | def write(self, write_context, value: str): |
| 405 | write_context.write_string(value) |
| 406 | |
| 407 | def read(self, read_context): |
| 408 | return read_context.read_string() |
nothing calls this directly
no test coverage detected