MCPcopy Create free account
hub / github.com/krasimir/react-in-patterns / createAndAccumulateChangeEvent

Function createAndAccumulateChangeEvent

code/third-party/public/app.js:3915–3922  ·  view source on GitHub ↗
(inst, nativeEvent, target)

Source from the content-addressed store, hash-verified

3913};
3914
3915function createAndAccumulateChangeEvent(inst, nativeEvent, target) {
3916 var event = SyntheticEvent$1.getPooled(eventTypes$1.change, inst, nativeEvent, target);
3917 event.type = 'change';
3918 // Flag this event loop as needing state restore.
3919 enqueueStateRestore(target);
3920 accumulateTwoPhaseDispatches(event);
3921 return event;
3922}
3923/**
3924 * For IE shims
3925 */

Callers 2

app.jsFile · 0.70

Calls 2

enqueueStateRestoreFunction · 0.70

Tested by

no test coverage detected