| 486 | } |
| 487 | |
| 488 | std::optional<ValueSchema> ValueSchemaParser::parseClassSchema(TextParser& parser, bool includeProperties) { |
| 489 | if (!parser.tryParse(kStringTypeClass[0])) { |
| 490 | return std::nullopt; |
| 491 | } |
| 492 | |
| 493 | return doParseClassSchema(parser, true); |
| 494 | } |
| 495 | |
| 496 | } // namespace Valdi |
nothing calls this directly
no test coverage detected