mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
66c6a75650
Summary: Add annotations to function parameters required for Flow's Local Type Inference project. This codemod prepares the codebase to match Flow's new typechecking algorithm. The new algorithm will make Flow more reliable and predictable. Reviewed By: bradzacher Differential Revision: D37388949 fbshipit-source-id: cdcbc98035ce9b6994842005ea46df42de54f9b8
64 lines
2.1 KiB
JavaScript
64 lines
2.1 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict-local
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
let registerModule;
|
|
if (global.RN$Bridgeless === true && global.RN$registerCallableModule) {
|
|
registerModule = global.RN$registerCallableModule;
|
|
} else {
|
|
const BatchedBridge = require('../BatchedBridge/BatchedBridge');
|
|
registerModule = (
|
|
moduleName:
|
|
| $TEMPORARY$string<'GlobalPerformanceLogger'>
|
|
| $TEMPORARY$string<'HMRClient'>
|
|
| $TEMPORARY$string<'HeapCapture'>
|
|
| $TEMPORARY$string<'JSDevSupportModule'>
|
|
| $TEMPORARY$string<'JSTimers'>
|
|
| $TEMPORARY$string<'RCTDeviceEventEmitter'>
|
|
| $TEMPORARY$string<'RCTLog'>
|
|
| $TEMPORARY$string<'RCTNativeAppEventEmitter'>
|
|
| $TEMPORARY$string<'SamplingProfiler'>
|
|
| $TEMPORARY$string<'Systrace'>,
|
|
/* $FlowFixMe[missing-local-annot] The type annotation(s) required by
|
|
* Flow's LTI update could not be added via codemod */
|
|
factory,
|
|
) => BatchedBridge.registerLazyCallableModule(moduleName, factory);
|
|
}
|
|
|
|
registerModule('Systrace', () => require('../Performance/Systrace'));
|
|
if (!(global.RN$Bridgeless === true)) {
|
|
registerModule('JSTimers', () => require('./Timers/JSTimers'));
|
|
}
|
|
registerModule('HeapCapture', () => require('../HeapCapture/HeapCapture'));
|
|
registerModule('SamplingProfiler', () =>
|
|
require('../Performance/SamplingProfiler'),
|
|
);
|
|
registerModule('RCTLog', () => require('../Utilities/RCTLog'));
|
|
registerModule(
|
|
'RCTDeviceEventEmitter',
|
|
() => require('../EventEmitter/RCTDeviceEventEmitter').default,
|
|
);
|
|
registerModule('RCTNativeAppEventEmitter', () =>
|
|
require('../EventEmitter/RCTNativeAppEventEmitter'),
|
|
);
|
|
registerModule('GlobalPerformanceLogger', () =>
|
|
require('../Utilities/GlobalPerformanceLogger'),
|
|
);
|
|
registerModule('JSDevSupportModule', () =>
|
|
require('../Utilities/JSDevSupportModule'),
|
|
);
|
|
|
|
if (__DEV__ && !global.__RCTProfileIsProfiling) {
|
|
registerModule('HMRClient', () => require('../Utilities/HMRClient'));
|
|
} else {
|
|
registerModule('HMRClient', () => require('../Utilities/HMRClientProdShim'));
|
|
}
|