| 88 | template <typename Engine> |
| 89 | struct GenerateImpl { |
| 90 | Status Visit(const NullType&) { return OK(writer.Null()); } |
| 91 | |
| 92 | Status Visit(const BooleanType&) { |
| 93 | return OK(writer.Bool(std::uniform_int_distribution<uint16_t>{}(e) & 1)); |
nothing calls this directly
no test coverage detected