forked from facebook/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conditionalize Promise queuing based on JobQueue flag
Summary: This diff expose the `JobQueue` flag to internal bytecode via `HermesInternal.useEngineQueue` to conditionalize where Promise Jobs are queued into. This diff has some unfortunate noises from upstreaming rollup changes when building Promise internal bytecode. Reviewed By: avp Differential Revision: D27549346 fbshipit-source-id: 0740fa6e5d2f586b77b5cc1bc7e3f56d02a6e9c5
- Loading branch information
1 parent
a4cf67f
commit 27ac760
Showing
7 changed files
with
24 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"dependencies": { | ||
"@rollup/plugin-commonjs": "^15.0.0", | ||
"@rollup/plugin-node-resolve": "^9.0.0", | ||
"@rollup/plugin-commonjs": "~15.0.0", | ||
"@rollup/plugin-node-resolve": "~9.0.0", | ||
"promise": "8.0.3" | ||
}, | ||
"scripts": { | ||
"start": "yarn run rollup --config rollup.config.js index.js" | ||
}, | ||
"devDependencies": { | ||
"rollup": "^2.27.0" | ||
"rollup": "~2.27.0" | ||
} | ||
} |