{"version":3,"sources":["node_modules\\react-dom\\lib\\ResponderSyntheticEvent.js"],"names":["SyntheticEvent","require","ResponderEventInterface","touchHistory","nativeEvent","ResponderSyntheticEvent","dispatchConfig","dispatchMarker","nativeEventTarget","call","augmentClass","module","exports"],"mappings":";;;;;;;;;;AAUA;;AAEA,GAAIA,gBAAiBC,QAAQ,kBAAR,CAArB;;;;;;;AAOA,GAAIC,yBAA0B;AAC5BC,aAAc,sBAAUC,WAAV,CAAuB;AACnC,MAAO,KAAP;AACD,CAH2B,CAA9B;;;;;;;;;AAYA,QAASC,wBAAT,CAAiCC,cAAjC,CAAiDC,cAAjD,CAAiEH,WAAjE,CAA8EI,iBAA9E,CAAiG;AAC/F,MAAOR,gBAAeS,IAAf,CAAoB,IAApB,CAA0BH,cAA1B,CAA0CC,cAA1C,CAA0DH,WAA1D,CAAuEI,iBAAvE,CAAP;AACD;;AAEDR,eAAeU,YAAf,CAA4BL,uBAA5B,CAAqDH,uBAArD;;AAEAS,OAAOC,OAAP,CAAiBP,uBAAjB","file":"ResponderSyntheticEvent.js","sourceRoot":"D:/Work/Office/react-native-on-web/cli/tmpl/project","sourcesContent":["/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar SyntheticEvent = require('./SyntheticEvent');\n\n/**\n * `touchHistory` isn't actually on the native event, but putting it in the\n * interface will ensure that it is cleaned up when pooled/destroyed. The\n * `ResponderEventPlugin` will populate it appropriately.\n */\nvar ResponderEventInterface = {\n  touchHistory: function (nativeEvent) {\n    return null; // Actually doesn't even look at the native event.\n  }\n};\n\n/**\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {string} dispatchMarker Marker identifying the event target.\n * @param {object} nativeEvent Native event.\n * @extends {SyntheticEvent}\n */\nfunction ResponderSyntheticEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticEvent.augmentClass(ResponderSyntheticEvent, ResponderEventInterface);\n\nmodule.exports = ResponderSyntheticEvent;"]}