(self, write_context, value)
| 110 | """Serializer for INT32/VARINT32 type - uses variable-length encoding for xlang compatibility.""" |
| 111 | |
| 112 | def write(self, write_context, value): |
| 113 | write_context.write_varint32(value) |
| 114 | |
| 115 | def read(self, read_context): |
| 116 | return read_context.read_varint32() |
nothing calls this directly
no test coverage detected