* Accumulates dispatches on an `SyntheticEvent`, but only for the * `dispatchMarker`. * @param {SyntheticEvent} event
(event)
| 2724 | * @param {SyntheticEvent} event |
| 2725 | */ |
| 2726 | function accumulateDirectDispatchesSingle(event) { |
| 2727 | if (event && event.dispatchConfig.registrationName) { |
| 2728 | accumulateDispatches(event._targetInst, null, event); |
| 2729 | } |
| 2730 | } |
| 2731 | |
| 2732 | function accumulateTwoPhaseDispatches(events) { |
| 2733 | forEachAccumulated(events, accumulateTwoPhaseDispatchesSingle); |
nothing calls this directly
no test coverage detected