| 1078 | } |
| 1079 | |
| 1080 | void CreateSchemaValidators(Context& context, const SchemaArray& schemas) const { |
| 1081 | for (SizeType i = 0; i < schemas.count; i++) |
| 1082 | context.validators[schemas.begin + i] = context.factory.CreateSchemaValidator(*schemas.schemas[i]); |
| 1083 | } |
| 1084 | |
| 1085 | // O(n) |
| 1086 | bool FindPropertyIndex(const ValueType& name, SizeType* outIndex) const { |
nothing calls this directly
no test coverage detected