-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Break out platform delegate #30324
Closed
Closed
Break out platform delegate #30324
Conversation
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
nodejs-github-bot
added
the
c++
Issues and PRs that require attention from people who are familiar with C++.
label
Nov 7, 2019
laverdet
force-pushed
the
platform-delegate
branch
from
November 7, 2019 02:17
8623e9a
to
01976b5
Compare
For posterity previous inline comments and responses are here: laverdet@8623e9a |
addaleax
approved these changes
Nov 7, 2019
addaleax
reviewed
Nov 7, 2019
Can you add a cctest for this? (I think using a |
lundibundi
reviewed
Nov 7, 2019
bnoordhuis
reviewed
Nov 7, 2019
bnoordhuis
approved these changes
Nov 12, 2019
Adds a new abstract class for module authors and embedders to register arbitrary isolates with `node::MultiIsolatePlatform`.
laverdet
force-pushed
the
platform-delegate
branch
from
November 12, 2019 22:44
32dae59
to
5164b20
Compare
addaleax
added
the
semver-major
PRs that contain breaking changes and should be released in the next major version.
label
Nov 13, 2019
Now that this has definitely become semver-major this needs another @nodejs/tsc review… |
joyeecheung
approved these changes
Nov 14, 2019
addaleax
added
the
author ready
PRs that have at least one approval, no pending requests for changes, and a CI started.
label
Nov 18, 2019
addaleax
pushed a commit
that referenced
this pull request
Nov 20, 2019
Adds a new abstract class for module authors and embedders to register arbitrary isolates with `node::MultiIsolatePlatform`. PR-URL: #30324 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Landed in c712fb7, thanks for the pull request and please let us know if there’s anything else you need! 🚀 |
addaleax
added
the
v8 platform
Issues and PRs related to Node's v8::Platform implementation.
label
Feb 18, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
author ready
PRs that have at least one approval, no pending requests for changes, and a CI started.
c++
Issues and PRs that require attention from people who are familiar with C++.
semver-major
PRs that contain breaking changes and should be released in the next major version.
v8 platform
Issues and PRs related to Node's v8::Platform implementation.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is continuation from the discussion here: laverdet/isolated-vm#133.
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes