util: fix for inspecting promises#3197
Merged
evanlucas merged 1 commit intonodejs:vee-eight-4.6from Oct 6, 2015
Merged
Conversation
Member
|
@evanlucas I rebased the vee-eight-4.6 branch, you can update your PR to keep only the last commit |
ee62c84 to
4c71044
Compare
Member
|
LGTM |
Member
The upgrade to v8 4.6 removed ObjectIsPromise. This change utilizes v8::Value::IsPromise to verify that the argument is indeed a promise. PR-URL: nodejs#3197 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
4c71044 to
4d13dae
Compare
Contributor
Author
|
Thanks! Landed in 4d13dae |
Member
|
This is probably worth merging back into master to keep the delta small. You have my preemptive LGTM. |
Contributor
Author
|
Ok, should I just cherry-pick and push or is there a different way we are doing that? |
Member
|
Maybe PR and run CI just in case. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The upgrade to v8 4.6 removes
ObjectIsPromise. This change utilizesv8::Value::IsPromise to verify that the argument is indeed a promise.
R= @bnoordhuis, @targos
Ben, not sure if you had another way of doing this, so I went ahead and cherry-picked the changes from #3119. Feel free to close if you want to go a different route though.