Searched refs:result_capability (Results 1 – 1 of 1) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-promise-object.c | 854 ecma_value_t result_capability) /**< promise capability */ in ecma_promise_do_then() argument 879 …_SET_NON_NULL_POINTER_TAG (capability_with_tag, ecma_get_object_from_value (result_capability), 0); in ecma_promise_do_then() 907 ecma_enqueue_promise_reaction_job (result_capability, on_fulfilled, value); in ecma_promise_do_then() 914 ecma_enqueue_promise_reaction_job (result_capability, on_rejected, reason); in ecma_promise_do_then() 919 return ecma_op_object_get (ecma_get_object_from_value (result_capability), promise_str_p); in ecma_promise_do_then() 952 ecma_value_t result_capability = ecma_promise_new_capability (species); in ecma_promise_then() local 955 if (ECMA_IS_VALUE_ERROR (result_capability)) in ecma_promise_then() 957 return result_capability; in ecma_promise_then() 960 ecma_value_t ret = ecma_promise_do_then (promise, on_fulfilled, on_rejected, result_capability); in ecma_promise_then() 961 ecma_free_value (result_capability); in ecma_promise_then()
|