| 47 | ValueSchema::~ValueSchema() = default; |
| 48 | |
| 49 | std::string ValueSchema::toString() const { |
| 50 | return toString(ValueSchemaPrintFormat::HumanReadable, false); |
| 51 | } |
| 52 | |
| 53 | std::string ValueSchema::toString(ValueSchemaPrintFormat format, bool recurseInSchemaReferences) const { |
| 54 | std::ostringstream ss; |
nothing calls this directly
no test coverage detected