(errorFormatter)
| 726 | } |
| 727 | |
| 728 | function setSchemaErrorFormatter (errorFormatter) { |
| 729 | throwIfAlreadyStarted('Cannot call "setSchemaErrorFormatter"!') |
| 730 | validateSchemaErrorFormatter(errorFormatter) |
| 731 | this[kSchemaErrorFormatter] = errorFormatter.bind(this) |
| 732 | return this |
| 733 | } |
| 734 | |
| 735 | function setSerializerCompiler (serializerCompiler) { |
| 736 | throwIfAlreadyStarted('Cannot call "setSerializerCompiler"!') |
nothing calls this directly
no test coverage detected