(errors, e)
| 158 | }, |
| 159 | extends (schema, value, path) { |
| 160 | const validate = (errors, e) => { |
| 161 | errors.push(...this._validateSchema(e, value, path)) |
| 162 | return errors |
| 163 | } |
| 164 | return schema.extends.reduce(validate, []) |
| 165 | }, |
| 166 | allOf (schema, value, path) { |
nothing calls this directly
no test coverage detected