MCPcopy Index your code
hub / github.com/krasimir/react-in-patterns / createAndAccumulateChangeEvent

Function createAndAccumulateChangeEvent

code/composition/public/app.js:4820–4827  ·  view source on GitHub ↗
(inst, nativeEvent, target)

Source from the content-addressed store, hash-verified

4818};
4819
4820function createAndAccumulateChangeEvent(inst, nativeEvent, target) {
4821 var event = SyntheticEvent$1.getPooled(eventTypes$1.change, inst, nativeEvent, target);
4822 event.type = 'change';
4823 // Flag this event loop as needing state restore.
4824 enqueueStateRestore(target);
4825 accumulateTwoPhaseDispatches(event);
4826 return event;
4827}
4828/**
4829 * For IE shims
4830 */

Callers 2

app.jsFile · 0.70

Calls 2

enqueueStateRestoreFunction · 0.70

Tested by

no test coverage detected