Pass both callback values to then
This commit is contained in:
parent
f3af1dbd54
commit
7929daa48c
2 changed files with 6 additions and 2 deletions
|
@ -91,7 +91,9 @@ let valueToMeta = function (sender, value, optimizeSimpleObject = false) {
|
|||
} else if (meta.type === 'buffer') {
|
||||
meta.value = Array.prototype.slice.call(value, 0)
|
||||
} else if (meta.type === 'promise') {
|
||||
meta.then = valueToMeta(sender, function (v) { value.then(v) })
|
||||
meta.then = valueToMeta(sender, function (onFulfilled, onRejected) {
|
||||
value.then(onFulfilled, onRejected)
|
||||
})
|
||||
} else if (meta.type === 'error') {
|
||||
meta.members = plainObjectToMeta(value)
|
||||
|
||||
|
|
|
@ -47,7 +47,9 @@ var wrapArgs = function (args, visited) {
|
|||
if (value.constructor != null && value.constructor.name === 'Promise') {
|
||||
return {
|
||||
type: 'promise',
|
||||
then: valueToMeta(function (v) { value.then(v) })
|
||||
then: valueToMeta(function (onFulfilled, onRejected) {
|
||||
value.then(onFulfilled, onRejected)
|
||||
})
|
||||
}
|
||||
} else if (v8Util.getHiddenValue(value, 'atomId')) {
|
||||
return {
|
||||
|
|
Loading…
Reference in a new issue