name: duk_pcall_prop proto: | duk_int_t duk_pcall_prop(duk_context *ctx, duk_idx_t obj_idx, duk_idx_t nargs); stack: | [ ... obj! ... key! arg1! ...! argN! ] -> [ ... obj! ... retval! ] (if success, return value == 0) [ ... obj! ... key! arg1! ...! argN! ] -> [ ... obj! ... err! ] (if failure, return value != 0) summary: |
Like duk_pcall()
, but the target function
is looked up from obj.key
and obj
is used as the function's
this
binding.