(self, write_context, value)
| 130 | """Serializer for INT64/VARINT64 type - uses variable-length encoding for xlang compatibility.""" |
| 131 | |
| 132 | def write(self, write_context, value): |
| 133 | write_context.write_varint64(value) |
| 134 | |
| 135 | def read(self, read_context): |
| 136 | return read_context.read_varint64() |
nothing calls this directly
no test coverage detected