(name, fn)
| 609 | return this |
| 610 | |
| 611 | function _addHook (name, fn) { |
| 612 | this[kHooks].add(name, fn) |
| 613 | this[kChildren].forEach(child => _addHook.call(child, name, fn)) |
| 614 | } |
| 615 | } |
| 616 | |
| 617 | // wrapper that we expose to the user for schemas handling |
nothing calls this directly
no test coverage detected
searching dependent graphs…