(errorFormatter)
| 733 | } |
| 734 | |
| 735 | function setSchemaErrorFormatter (errorFormatter) { |
| 736 | throwIfAlreadyStarted(class="st">'Cannot call "setSchemaErrorFormatter"!') |
| 737 | validateSchemaErrorFormatter(errorFormatter) |
| 738 | this[kSchemaErrorFormatter] = errorFormatter.bind(this) |
| 739 | return this |
| 740 | } |
| 741 | |
| 742 | function setSerializerCompiler (serializerCompiler) { |
| 743 | throwIfAlreadyStarted(class="st">'Cannot call "setSerializerCompiler"!') |
nothing calls this directly
no test coverage detected