react-native/Libraries/Core
Kirill Nikolaev 52f431b4bb Eliminate circular dependency between MessageQueue and JSTimers modules. (#19526)
Summary:
This makes JSTimers actively register a callback for callImmediates.

Besides being generally tricky, circular dependency prevent compiling React Native code with bundlers that rely on concatenating module sources rather that evaluating code at the time of requiring, like Google Closure Compiler.

Sadly, Google Closure Compiler setup that prompted this change is complicated and brittle. And there are no good public tools to find circular dependencies among Haste-style modules (with unqualified require paths).

So some advice on a good test plan would be useful. Does Facebook have any tools to find circular dependencies with Haste-style requires?

FWIW, a check that worked for me was to replace all import paths in React Native from Haste style to normal relative paths (which I needed anyway) and then run [`madge`](https://www.npmjs.com/package/madge) on the code base:

```
$ ~/node_modules/.bin/madge --circular react-native/Libraries
Processed 390 files (7.4s) (81 warnings)

✖ Found 2 circular dependencies!

1) BatchedBridge/NativeModules.js > BatchedBridge/BatchedBridge.js > BatchedBridge/MessageQueue.js > Core/Timers/JSTimers.js
2) StyleSheet/flattenStyle.js > StyleSheet/StyleSheet.js
```

(The second cycle is already eliminated in a8e3c7f578).

[GENERAL] [MINOR] [MessageQueue] - MessageQueue implementation doesn't have a circular dependency on JSTimers.
Closes https://github.com/facebook/react-native/pull/19526

Reviewed By: hramos

Differential Revision: D8458755

Pulled By: yungsters

fbshipit-source-id: e753139b920ba1ad1a6db10f974c03ca195340c7
2018-06-15 17:06:29 -07:00
..
Devtools Prettier React Native Libraries 2018-05-10 19:10:38 -07:00
Timers Eliminate circular dependency between MessageQueue and JSTimers modules. (#19526) 2018-06-15 17:06:29 -07:00
__mocks__ Prettier React Native Libraries 2018-05-10 19:10:38 -07:00
__tests__ Update license headers for MIT license 2018-02-16 18:31:53 -08:00
ExceptionsManager.js Prettier React Native Libraries 2018-05-10 19:10:38 -07:00
InitializeCore.js Prettier React Native Libraries 2018-05-10 19:10:38 -07:00
ReactNativeVersion.js Prettier React Native Libraries 2018-05-10 19:10:38 -07:00
ReactNativeVersionCheck.js Remove @providesModule from all modules 2018-04-25 07:37:10 -07:00