(self, discriminator)
| 75 | self.write_uint32(length) |
| 76 | |
| 77 | def start_write_union(self, discriminator): |
| 78 | self.write_uint32(discriminator) |
| 79 | |
| 80 | def write_null_flag(self, flag): |
| 81 | self.write_uint8(1 if flag else 0) |
nothing calls this directly
no test coverage detected